Struct gix_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>

source§

fn from(v: PostResponse<A, B, C>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<H, B, PB> Freeze for PostResponse<H, B, PB>
where PB: Freeze, H: Freeze, B: Freeze,

§

impl<H, B, PB> RefUnwindSafe for PostResponse<H, B, PB>

§

impl<H, B, PB> Send for PostResponse<H, B, PB>
where PB: Send, H: Send, B: Send,

§

impl<H, B, PB> Sync for PostResponse<H, B, PB>
where PB: Sync, H: Sync, B: Sync,

§

impl<H, B, PB> Unpin for PostResponse<H, B, PB>
where PB: Unpin, H: Unpin, B: Unpin,

§

impl<H, B, PB> UnwindSafe for PostResponse<H, B, PB>
where PB: UnwindSafe, H: UnwindSafe, B: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.