pub struct ProbeHttpResponse {
pub head: HttpHead,
pub body: Vec<u8>,
}Expand description
HTTP response returned by a provider probe transport.
Fields§
§head: HttpHeadParsed HTTP response head.
body: Vec<u8>Decoded response body bytes.
Implementations§
Trait Implementations§
Source§impl Clone for ProbeHttpResponse
impl Clone for ProbeHttpResponse
Source§fn clone(&self) -> ProbeHttpResponse
fn clone(&self) -> ProbeHttpResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProbeHttpResponse
impl Debug for ProbeHttpResponse
impl Eq for ProbeHttpResponse
Source§impl PartialEq for ProbeHttpResponse
impl PartialEq for ProbeHttpResponse
impl StructuralPartialEq for ProbeHttpResponse
Auto Trait Implementations§
impl Freeze for ProbeHttpResponse
impl RefUnwindSafe for ProbeHttpResponse
impl Send for ProbeHttpResponse
impl Sync for ProbeHttpResponse
impl Unpin for ProbeHttpResponse
impl UnsafeUnpin for ProbeHttpResponse
impl UnwindSafe for ProbeHttpResponse
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