pub struct HttpCallResponse {
pub request_id: RequestId,
pub num_headers: usize,
pub body_size: usize,
pub num_trailers: usize,
}Expand description
The response of an HTTP call.
Fields§
§request_id: RequestId§num_headers: usize§body_size: usize§num_trailers: usizeTrait Implementations§
Source§impl Clone for HttpCallResponse
impl Clone for HttpCallResponse
Source§fn clone(&self) -> HttpCallResponse
fn clone(&self) -> HttpCallResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 HttpCallResponse
impl Debug for HttpCallResponse
Source§impl PartialEq for HttpCallResponse
impl PartialEq for HttpCallResponse
impl Eq for HttpCallResponse
impl StructuralPartialEq for HttpCallResponse
Auto Trait Implementations§
impl Freeze for HttpCallResponse
impl RefUnwindSafe for HttpCallResponse
impl Send for HttpCallResponse
impl Sync for HttpCallResponse
impl Unpin for HttpCallResponse
impl UnwindSafe for HttpCallResponse
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