pub enum SplitDir {
Horizontal,
Vertical,
}Expand description
Direction of a split between two child panes.
Variants§
Horizontal
The two children are placed side-by-side (left | right).
Vertical
The two children are stacked (top / bottom).
Trait Implementations§
impl Copy for SplitDir
impl Eq for SplitDir
impl StructuralPartialEq for SplitDir
Auto Trait Implementations§
impl Freeze for SplitDir
impl RefUnwindSafe for SplitDir
impl Send for SplitDir
impl Sync for SplitDir
impl Unpin for SplitDir
impl UnsafeUnpin for SplitDir
impl UnwindSafe for SplitDir
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