pub enum RotationType {
Clockwise90,
Clockwise180,
Clockwise270,
Anticlockwise90,
Anticlockwise180,
Anticlockwise270,
Custom(f32),
}Variants§
Clockwise90
Clockwise180
Clockwise270
Anticlockwise90
Anticlockwise180
Anticlockwise270
Custom(f32)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RotationType
impl RefUnwindSafe for RotationType
impl Send for RotationType
impl Sync for RotationType
impl Unpin for RotationType
impl UnwindSafe for RotationType
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