Struct git_transport::client::http::PostResponse
source · pub struct PostResponse<H, B, PB> {
pub post_body: PB,
pub headers: H,
pub body: B,
}
Available on crate features
blocking-client
and http-client
only.Expand description
The return value of Http::post().
Fields§
§post_body: PB
The body to post to the server as part of the request.
Note: Implementations should drop the handle to avoid deadlocks.
headers: H
The headers of the post response.
body: B
The body of the post response.
Trait Implementations§
source§impl<A, B, C> From<PostResponse<A, B, C>> for GetResponse<A, B>
impl<A, B, C> From<PostResponse<A, B, C>> for GetResponse<A, B>
source§fn from(v: PostResponse<A, B, C>) -> Self
fn from(v: PostResponse<A, B, C>) -> Self
Converts to this type from the input type.