pub enum SplitOrientation {
Left,
Right,
Top,
Bottom,
}
Expand description
Orients split from an edge of parent panel.
Variants§
Left
Splits from left edge of parent panel.
Right
Splits from right edge of parent panel.
Top
Splits from top edge of parent panel.
Bottom
Splits from bottom edge of parent panel.
Trait Implementations§
Source§impl Clone for SplitOrientation
impl Clone for SplitOrientation
Source§fn clone(&self) -> SplitOrientation
fn clone(&self) -> SplitOrientation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SplitOrientation
impl Debug for SplitOrientation
Source§impl PartialEq for SplitOrientation
impl PartialEq for SplitOrientation
impl Copy for SplitOrientation
impl Eq for SplitOrientation
impl StructuralPartialEq for SplitOrientation
Auto Trait Implementations§
impl Freeze for SplitOrientation
impl RefUnwindSafe for SplitOrientation
impl Send for SplitOrientation
impl Sync for SplitOrientation
impl Unpin for SplitOrientation
impl UnwindSafe for SplitOrientation
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