pub enum RequestTransmission {
NotSent,
Sent,
}Expand description
Whether the request crossed the transport send boundary.
Variants§
NotSent
The core proved that no request bytes were sent.
Sent
The request crossed the send boundary and may have reached the server.
Trait Implementations§
Source§impl Clone for RequestTransmission
impl Clone for RequestTransmission
Source§fn clone(&self) -> RequestTransmission
fn clone(&self) -> RequestTransmission
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 moreimpl Copy for RequestTransmission
Source§impl Debug for RequestTransmission
impl Debug for RequestTransmission
impl Eq for RequestTransmission
Source§impl PartialEq for RequestTransmission
impl PartialEq for RequestTransmission
impl StructuralPartialEq for RequestTransmission
Auto Trait Implementations§
impl Freeze for RequestTransmission
impl RefUnwindSafe for RequestTransmission
impl Send for RequestTransmission
impl Sync for RequestTransmission
impl Unpin for RequestTransmission
impl UnsafeUnpin for RequestTransmission
impl UnwindSafe for RequestTransmission
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