#[repr(i32)]pub enum RotateFlags {
ROTATE_90_CLOCKWISE = 0,
ROTATE_180 = 1,
ROTATE_90_COUNTERCLOCKWISE = 2,
}
Variants§
ROTATE_90_CLOCKWISE = 0
Rotate 90 degrees clockwise
ROTATE_180 = 1
Rotate 180 degrees clockwise
ROTATE_90_COUNTERCLOCKWISE = 2
Rotate 270 degrees clockwise
Trait Implementations§
Source§impl Clone for RotateFlags
impl Clone for RotateFlags
Source§fn clone(&self) -> RotateFlags
fn clone(&self) -> RotateFlags
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 RotateFlags
impl Debug for RotateFlags
Source§impl From<RotateFlags> for i32
impl From<RotateFlags> for i32
Source§fn from(v: RotateFlags) -> Self
fn from(v: RotateFlags) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RotateFlags
impl PartialEq for RotateFlags
Source§impl TryFrom<i32> for RotateFlags
impl TryFrom<i32> for RotateFlags
impl Copy for RotateFlags
impl Eq for RotateFlags
impl StructuralPartialEq for RotateFlags
Auto Trait Implementations§
impl Freeze for RotateFlags
impl RefUnwindSafe for RotateFlags
impl Send for RotateFlags
impl Sync for RotateFlags
impl Unpin for RotateFlags
impl UnwindSafe for RotateFlags
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