pub enum Rotation90 {
R0 = 0,
R90 = 1,
R180 = 2,
R270 = 3,
}Expand description
Rotation when only 4 values are allowed
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for Rotation90
impl Clone for Rotation90
Source§fn clone(&self) -> Rotation90
fn clone(&self) -> Rotation90
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 Rotation90
impl Debug for Rotation90
Source§impl Default for Rotation90
impl Default for Rotation90
Source§fn default() -> Rotation90
fn default() -> Rotation90
Returns the “default value” for a type. Read more
Source§impl PartialEq for Rotation90
impl PartialEq for Rotation90
impl Copy for Rotation90
impl Eq for Rotation90
impl StructuralPartialEq for Rotation90
Auto Trait Implementations§
impl Freeze for Rotation90
impl RefUnwindSafe for Rotation90
impl Send for Rotation90
impl Sync for Rotation90
impl Unpin for Rotation90
impl UnwindSafe for Rotation90
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