pub enum CountingDirection {
Up = 0,
Down = 1,
}
Variants§
Trait Implementations§
Source§impl Clone for CountingDirection
impl Clone for CountingDirection
Source§fn clone(&self) -> CountingDirection
fn clone(&self) -> CountingDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CountingDirection
impl Debug for CountingDirection
Source§impl Format for CountingDirection
impl Format for CountingDirection
impl Copy for CountingDirection
Auto Trait Implementations§
impl Freeze for CountingDirection
impl RefUnwindSafe for CountingDirection
impl Send for CountingDirection
impl Sync for CountingDirection
impl Unpin for CountingDirection
impl UnwindSafe for CountingDirection
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