pub enum Rotation {
None,
Horizontal,
Flipped,
FlippedHorizontal,
}Expand description
The rotation of the page.
Variants§
None
No rotation.
Horizontal
A rotation of 90 degrees.
Flipped
A rotation of 180 degrees.
FlippedHorizontal
A rotation of 270 degrees.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rotation
impl RefUnwindSafe for Rotation
impl Send for Rotation
impl Sync for Rotation
impl Unpin for Rotation
impl UnwindSafe for Rotation
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