pub enum Direction {
LeftToRight,
TopToBottom,
}Expand description
Indicates direction GridCells should be written in
Variants§
LeftToRight
Writes GridCells from left to right, like a typewriter
TopToBottom
Writes GridCells from top to bottom, like how ls lists files by default
Trait Implementations§
impl Eq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnwindSafe for Direction
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