pub enum RotationDirection {
Clockwise,
CounterClockwise,
}Expand description
Determines the direction of disk surface rotation for visualization functions. Typically, Side 0, the bottom-facing side of a disk, rotates counter-clockwise when viewed from the bottom, and Side 1, the top-facing side, rotates clockwise.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RotationDirection
impl Clone for RotationDirection
Source§fn clone(&self) -> RotationDirection
fn clone(&self) -> RotationDirection
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 RotationDirection
impl Debug for RotationDirection
impl Copy for RotationDirection
Auto Trait Implementations§
impl Freeze for RotationDirection
impl RefUnwindSafe for RotationDirection
impl Send for RotationDirection
impl Sync for RotationDirection
impl Unpin for RotationDirection
impl UnwindSafe for RotationDirection
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