pub enum RelativeChange {
Unchanged,
Added,
Removed,
Changed,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RelativeChange
impl Clone for RelativeChange
Source§fn clone(&self) -> RelativeChange
fn clone(&self) -> RelativeChange
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 RelativeChange
impl Debug for RelativeChange
Source§impl<'de> Deserialize<'de> for RelativeChange
impl<'de> Deserialize<'de> for RelativeChange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for RelativeChange
impl FromStr for RelativeChange
Source§impl Ord for RelativeChange
impl Ord for RelativeChange
Source§fn cmp(&self, other: &RelativeChange) -> Ordering
fn cmp(&self, other: &RelativeChange) -> 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 RelativeChange
impl PartialEq for RelativeChange
Source§impl PartialOrd for RelativeChange
impl PartialOrd for RelativeChange
Source§impl ValueEnum for RelativeChange
impl ValueEnum for RelativeChange
impl Copy for RelativeChange
impl Eq for RelativeChange
impl StructuralPartialEq for RelativeChange
Auto Trait Implementations§
impl Freeze for RelativeChange
impl RefUnwindSafe for RelativeChange
impl Send for RelativeChange
impl Sync for RelativeChange
impl Unpin for RelativeChange
impl UnwindSafe for RelativeChange
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