#[non_exhaustive]pub enum CancellationErrorKind {
Timeout,
RequestCancelled,
ClosedInFlight,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for CancellationErrorKind
impl Clone for CancellationErrorKind
Source§fn clone(&self) -> CancellationErrorKind
fn clone(&self) -> CancellationErrorKind
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 CancellationErrorKind
impl Debug for CancellationErrorKind
Source§impl Display for CancellationErrorKind
impl Display for CancellationErrorKind
Source§impl Hash for CancellationErrorKind
impl Hash for CancellationErrorKind
Source§impl Ord for CancellationErrorKind
impl Ord for CancellationErrorKind
Source§fn cmp(&self, other: &CancellationErrorKind) -> Ordering
fn cmp(&self, other: &CancellationErrorKind) -> Ordering
1.21.0 · 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 CancellationErrorKind
impl PartialEq for CancellationErrorKind
Source§impl PartialOrd for CancellationErrorKind
impl PartialOrd for CancellationErrorKind
impl Copy for CancellationErrorKind
impl Eq for CancellationErrorKind
impl StructuralPartialEq for CancellationErrorKind
Auto Trait Implementations§
impl Freeze for CancellationErrorKind
impl RefUnwindSafe for CancellationErrorKind
impl Send for CancellationErrorKind
impl Sync for CancellationErrorKind
impl Unpin for CancellationErrorKind
impl UnsafeUnpin for CancellationErrorKind
impl UnwindSafe for CancellationErrorKind
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<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.