#[repr(u8)]pub enum CtrlRotate {
ROT_0 = 0,
ROT_90 = 1,
ROT_180 = 2,
ROT_270 = 3,
}Variants§
Implementations§
Source§impl CtrlRotate
impl CtrlRotate
Trait Implementations§
Source§impl Clone for CtrlRotate
impl Clone for CtrlRotate
Source§fn clone(&self) -> CtrlRotate
fn clone(&self) -> CtrlRotate
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 CtrlRotate
impl Debug for CtrlRotate
Source§impl From<CtrlRotate> for u8
impl From<CtrlRotate> for u8
Source§fn from(val: CtrlRotate) -> u8
fn from(val: CtrlRotate) -> u8
Converts to this type from the input type.
Source§impl From<u8> for CtrlRotate
impl From<u8> for CtrlRotate
Source§fn from(val: u8) -> CtrlRotate
fn from(val: u8) -> CtrlRotate
Converts to this type from the input type.
Source§impl Ord for CtrlRotate
impl Ord for CtrlRotate
Source§fn cmp(&self, other: &CtrlRotate) -> Ordering
fn cmp(&self, other: &CtrlRotate) -> 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 CtrlRotate
impl PartialEq for CtrlRotate
Source§impl PartialOrd for CtrlRotate
impl PartialOrd for CtrlRotate
impl Copy for CtrlRotate
impl Eq for CtrlRotate
impl StructuralPartialEq for CtrlRotate
Auto Trait Implementations§
impl Freeze for CtrlRotate
impl RefUnwindSafe for CtrlRotate
impl Send for CtrlRotate
impl Sync for CtrlRotate
impl Unpin for CtrlRotate
impl UnwindSafe for CtrlRotate
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