pub enum ReturnKind {
Simple,
Log,
Gross,
Net,
Excess,
Unknown,
Custom(String),
}Expand description
Descriptive return kind vocabulary.
Variants§
Simple
Simple arithmetic return.
Log
Logarithmic return.
Gross
Gross return vocabulary.
Net
Net return vocabulary.
Excess
Excess return vocabulary.
Unknown
Unknown return kind.
Custom(String)
Caller-defined return kind.
Trait Implementations§
Source§impl Clone for ReturnKind
impl Clone for ReturnKind
Source§fn clone(&self) -> ReturnKind
fn clone(&self) -> ReturnKind
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 ReturnKind
impl Debug for ReturnKind
Source§impl Display for ReturnKind
impl Display for ReturnKind
Source§impl FromStr for ReturnKind
impl FromStr for ReturnKind
Source§impl Hash for ReturnKind
impl Hash for ReturnKind
Source§impl Ord for ReturnKind
impl Ord for ReturnKind
Source§fn cmp(&self, other: &ReturnKind) -> Ordering
fn cmp(&self, other: &ReturnKind) -> 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 ReturnKind
impl PartialEq for ReturnKind
Source§impl PartialOrd for ReturnKind
impl PartialOrd for ReturnKind
impl Eq for ReturnKind
impl StructuralPartialEq for ReturnKind
Auto Trait Implementations§
impl Freeze for ReturnKind
impl RefUnwindSafe for ReturnKind
impl Send for ReturnKind
impl Sync for ReturnKind
impl Unpin for ReturnKind
impl UnsafeUnpin for ReturnKind
impl UnwindSafe for ReturnKind
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