pub enum Rotate {
Left,
Right,
Top,
Bottom,
}Expand description
Rotate can be used to rotate a table by 90 degrees.
Variants§
Left
Rotate Table to the left.
Right
Rotate Table to the right.
Top
Rotate Table to the top.
So the top becomes the bottom.
Bottom
Rotate Table to the bottom.
So the top becomes the bottom.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rotate
impl RefUnwindSafe for Rotate
impl Send for Rotate
impl Sync for Rotate
impl Unpin for Rotate
impl UnwindSafe for Rotate
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