Function scl_core::http::no_retry::post_data

source ·
pub async fn post_data<D: DeserializeOwned, S: Serialize + Debug>(
    uri: &str,
    body: &S
) -> Result<RequestResult<D>>
Expand description

带请求体去获取 JSON 对象

传入的请求体需要实现 serde::ser::Serializestd::fmt::Debug

返回的数据结构需要实现 serde::de::DeserializeOwned