pub enum NetworkKind {
Connect,
Body,
Request,
Unknown,
}Expand description
Sub-category of a Error::Network failure, so callers can react to (say)
a failed connection differently from a malformed body without string-matching.
Variants§
Connect
Failed to establish a connection to the host.
Body
Failed while transferring the request or response body.
Request
The request itself was invalid (builder, redirect policy, etc.).
Unknown
A network failure that didn’t fit the other kinds.
Trait Implementations§
Source§impl Clone for NetworkKind
impl Clone for NetworkKind
Source§fn clone(&self) -> NetworkKind
fn clone(&self) -> NetworkKind
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 NetworkKind
Source§impl Debug for NetworkKind
impl Debug for NetworkKind
Source§impl Display for NetworkKind
impl Display for NetworkKind
impl Eq for NetworkKind
Source§impl PartialEq for NetworkKind
impl PartialEq for NetworkKind
Source§fn eq(&self, other: &NetworkKind) -> bool
fn eq(&self, other: &NetworkKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkKind
Auto Trait Implementations§
impl Freeze for NetworkKind
impl RefUnwindSafe for NetworkKind
impl Send for NetworkKind
impl Sync for NetworkKind
impl Unpin for NetworkKind
impl UnsafeUnpin for NetworkKind
impl UnwindSafe for NetworkKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.