pub enum CounterDirection {
Up,
Down,
UpDown,
}Variants§
Trait Implementations§
Source§impl Clone for CounterDirection
impl Clone for CounterDirection
Source§fn clone(&self) -> CounterDirection
fn clone(&self) -> CounterDirection
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 CounterDirection
impl Debug for CounterDirection
Source§impl<'de> Deserialize<'de> for CounterDirection
impl<'de> Deserialize<'de> for CounterDirection
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 PartialEq for CounterDirection
impl PartialEq for CounterDirection
Source§impl Serialize for CounterDirection
impl Serialize for CounterDirection
impl Eq for CounterDirection
impl StructuralPartialEq for CounterDirection
Auto Trait Implementations§
impl Freeze for CounterDirection
impl RefUnwindSafe for CounterDirection
impl Send for CounterDirection
impl Sync for CounterDirection
impl Unpin for CounterDirection
impl UnwindSafe for CounterDirection
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