pub enum LayoutName {
MainVertical,
MainHorizontal,
EvenHorizontal,
EvenVertical,
Tiled,
MainHorizontalMirrored,
MainVerticalMirrored,
}Expand description
The detached layout name subset.
Variants§
MainVertical
The required main-vertical layout.
MainHorizontal
Internal split-window -h geometry using a top main pane.
EvenHorizontal
The tmux even-horizontal left-to-right layout.
EvenVertical
The tmux even-vertical top-to-bottom layout.
Tiled
The tmux tiled grid layout.
MainHorizontalMirrored
The tmux main-horizontal-mirrored layout.
MainVerticalMirrored
The tmux main-vertical-mirrored layout.
Trait Implementations§
Source§impl Clone for LayoutName
impl Clone for LayoutName
Source§fn clone(&self) -> LayoutName
fn clone(&self) -> LayoutName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LayoutName
Source§impl Debug for LayoutName
impl Debug for LayoutName
Source§impl<'de> Deserialize<'de> for LayoutName
impl<'de> Deserialize<'de> for LayoutName
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LayoutName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LayoutName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LayoutName
impl Display for LayoutName
impl Eq for LayoutName
Source§impl FromStr for LayoutName
impl FromStr for LayoutName
Source§impl PartialEq for LayoutName
impl PartialEq for LayoutName
Source§fn eq(&self, other: &LayoutName) -> bool
fn eq(&self, other: &LayoutName) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LayoutName
impl Serialize for LayoutName
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LayoutName
Auto Trait Implementations§
impl Freeze for LayoutName
impl RefUnwindSafe for LayoutName
impl Send for LayoutName
impl Sync for LayoutName
impl Unpin for LayoutName
impl UnsafeUnpin for LayoutName
impl UnwindSafe for LayoutName
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