pub struct DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4> {
pub op: __T0,
pub lhs_name: __T1,
pub lhs: __T2,
pub rhs_name: __T3,
pub rhs: __T4,
}Expand description
SNAFU context selector for the Error::Divisibility variant
Fields§
§op: __T0§lhs_name: __T1§lhs: __T2§rhs_name: __T3§rhs: __T4Implementations§
Trait Implementations§
Source§impl<__T0: Clone, __T1: Clone, __T2: Clone, __T3: Clone, __T4: Clone> Clone for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0: Clone, __T1: Clone, __T2: Clone, __T3: Clone, __T4: Clone> Clone for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
Source§fn clone(&self) -> DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
fn clone(&self) -> DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
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 moreSource§impl<__T0: Debug, __T1: Debug, __T2: Debug, __T3: Debug, __T4: Debug> Debug for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0: Debug, __T1: Debug, __T2: Debug, __T3: Debug, __T4: Debug> Debug for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
Source§impl<__T0, __T1, __T2, __T3, __T4> IntoError<Error> for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0, __T1, __T2, __T3, __T4> IntoError<Error> for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0: Copy, __T1: Copy, __T2: Copy, __T3: Copy, __T4: Copy> Copy for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
Auto Trait Implementations§
impl<__T0, __T1, __T2, __T3, __T4> Freeze for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0, __T1, __T2, __T3, __T4> RefUnwindSafe for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>where
__T0: RefUnwindSafe,
__T1: RefUnwindSafe,
__T2: RefUnwindSafe,
__T3: RefUnwindSafe,
__T4: RefUnwindSafe,
impl<__T0, __T1, __T2, __T3, __T4> Send for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0, __T1, __T2, __T3, __T4> Sync for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0, __T1, __T2, __T3, __T4> Unpin for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
impl<__T0, __T1, __T2, __T3, __T4> UnsafeUnpin for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>where
__T0: UnsafeUnpin,
__T1: UnsafeUnpin,
__T2: UnsafeUnpin,
__T3: UnsafeUnpin,
__T4: UnsafeUnpin,
impl<__T0, __T1, __T2, __T3, __T4> UnwindSafe for DivisibilitySnafu<__T0, __T1, __T2, __T3, __T4>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more