#[repr(C)]pub enum ImageRotation {
D0 = 0,
D90 = 1,
D180 = 2,
D270 = 3,
}
Expand description
Rotation in the positive (that is, anticlockwise) direction Visualized in terms of starting with (⥠) UPWARDS HARPOON WITH BARB LEFT FROM BAR similar to a DIGIT ONE (1)
Variants§
D0 = 0
⥠ UPWARDS HARPOON WITH BARB LEFT FROM BAR
D90 = 1
⥞ LEFTWARDS HARPOON WITH BARB DOWN FROM BAR
D180 = 2
⥝ DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR
D270 = 3
⥛ RIGHTWARDS HARPOON WITH BARB UP FROM BAR
Trait Implementations§
Source§impl Clone for ImageRotation
impl Clone for ImageRotation
Source§fn clone(&self) -> ImageRotation
fn clone(&self) -> ImageRotation
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 ImageRotation
impl Debug for ImageRotation
impl Copy for ImageRotation
Auto Trait Implementations§
impl Freeze for ImageRotation
impl RefUnwindSafe for ImageRotation
impl Send for ImageRotation
impl Sync for ImageRotation
impl Unpin for ImageRotation
impl UnwindSafe for ImageRotation
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