pub struct HttpControlPlaneResponse {
pub status_code: u16,
pub body: Vec<u8>,
}Expand description
Bounded response returned by an HttpTransport.
Fields§
§status_code: u16HTTP status code.
body: Vec<u8>Raw response body.
Trait Implementations§
Source§impl Clone for HttpControlPlaneResponse
impl Clone for HttpControlPlaneResponse
Source§fn clone(&self) -> HttpControlPlaneResponse
fn clone(&self) -> HttpControlPlaneResponse
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 HttpControlPlaneResponse
impl Debug for HttpControlPlaneResponse
impl Eq for HttpControlPlaneResponse
Source§impl PartialEq for HttpControlPlaneResponse
impl PartialEq for HttpControlPlaneResponse
impl StructuralPartialEq for HttpControlPlaneResponse
Auto Trait Implementations§
impl Freeze for HttpControlPlaneResponse
impl RefUnwindSafe for HttpControlPlaneResponse
impl Send for HttpControlPlaneResponse
impl Sync for HttpControlPlaneResponse
impl Unpin for HttpControlPlaneResponse
impl UnsafeUnpin for HttpControlPlaneResponse
impl UnwindSafe for HttpControlPlaneResponse
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