pub enum DeliveryPhase {
NotSent,
PossiblySent,
ResponseStarted,
}Expand description
Furthest delivery point known for one failed HTTP attempt.
Variants§
NotSent
Validation or connection establishment failed before request delivery.
PossiblySent
Some request bytes may have reached the peer.
ResponseStarted
Any informational or final response head was observed from the peer.
Trait Implementations§
Source§impl Clone for DeliveryPhase
impl Clone for DeliveryPhase
Source§fn clone(&self) -> DeliveryPhase
fn clone(&self) -> DeliveryPhase
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 DeliveryPhase
Source§impl Debug for DeliveryPhase
impl Debug for DeliveryPhase
impl Eq for DeliveryPhase
Source§impl Hash for DeliveryPhase
impl Hash for DeliveryPhase
Source§impl Ord for DeliveryPhase
impl Ord for DeliveryPhase
Source§fn cmp(&self, other: &DeliveryPhase) -> Ordering
fn cmp(&self, other: &DeliveryPhase) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeliveryPhase
impl PartialEq for DeliveryPhase
Source§impl PartialOrd for DeliveryPhase
impl PartialOrd for DeliveryPhase
impl StructuralPartialEq for DeliveryPhase
Auto Trait Implementations§
impl Freeze for DeliveryPhase
impl RefUnwindSafe for DeliveryPhase
impl Send for DeliveryPhase
impl Sync for DeliveryPhase
impl Unpin for DeliveryPhase
impl UnsafeUnpin for DeliveryPhase
impl UnwindSafe for DeliveryPhase
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