pub struct HttpSendOutput {
pub response: HttpResponse,
pub remaining: Vec<u8>,
pub keep_alive: bool,
}Expand description
Terminal output of a successful HTTP request-response exchange.
Fields§
§response: HttpResponse§remaining: Vec<u8>§keep_alive: boolTrait Implementations§
Source§impl Clone for HttpSendOutput
impl Clone for HttpSendOutput
Source§fn clone(&self) -> HttpSendOutput
fn clone(&self) -> HttpSendOutput
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 moreAuto Trait Implementations§
impl Freeze for HttpSendOutput
impl RefUnwindSafe for HttpSendOutput
impl Send for HttpSendOutput
impl Sync for HttpSendOutput
impl Unpin for HttpSendOutput
impl UnsafeUnpin for HttpSendOutput
impl UnwindSafe for HttpSendOutput
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