Struct gix_transport::client::http::GetResponse
source · pub struct GetResponse<H, B> {
pub headers: H,
pub body: B,
}
Available on crate features
blocking-client
and http-client
only.Expand description
The return value of Http::get()
.
Fields§
§headers: H
The response headers.
body: B
The response body.
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.
Auto Trait Implementations§
impl<H, B> Freeze for GetResponse<H, B>
impl<H, B> RefUnwindSafe for GetResponse<H, B>where
H: RefUnwindSafe,
B: RefUnwindSafe,
impl<H, B> Send for GetResponse<H, B>
impl<H, B> Sync for GetResponse<H, B>
impl<H, B> Unpin for GetResponse<H, B>
impl<H, B> UnwindSafe for GetResponse<H, B>where
H: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more