pub enum FlipType {
RR,
NN,
RN,
NR,
}Expand description
Flip type
Variants§
RR
Flip on both odd and even pages
NN
No flip on both odd and even pages
RN
Flip on odd pages, no flip on even pages
NR
Flip on even pages, no flip on odd pages
Implementations§
Trait Implementations§
impl Copy for FlipType
Auto Trait Implementations§
impl Freeze for FlipType
impl RefUnwindSafe for FlipType
impl Send for FlipType
impl Sync for FlipType
impl Unpin for FlipType
impl UnsafeUnpin for FlipType
impl UnwindSafe for FlipType
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