pub enum SelectLayoutTarget {
Session(SessionName),
Window(WindowTarget),
}Expand description
Target forms accepted by select-layout.
Variants§
Session(SessionName)
Applies to the addressed session’s single V1 window.
Window(WindowTarget)
Applies to the addressed V1 window target.
Trait Implementations§
Source§impl Clone for SelectLayoutTarget
impl Clone for SelectLayoutTarget
Source§fn clone(&self) -> SelectLayoutTarget
fn clone(&self) -> SelectLayoutTarget
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 moreSource§impl Debug for SelectLayoutTarget
impl Debug for SelectLayoutTarget
Source§impl<'de> Deserialize<'de> for SelectLayoutTarget
impl<'de> Deserialize<'de> for SelectLayoutTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SelectLayoutTarget
impl PartialEq for SelectLayoutTarget
Source§fn eq(&self, other: &SelectLayoutTarget) -> bool
fn eq(&self, other: &SelectLayoutTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelectLayoutTarget
impl Serialize for SelectLayoutTarget
impl Eq for SelectLayoutTarget
impl StructuralPartialEq for SelectLayoutTarget
Auto Trait Implementations§
impl Freeze for SelectLayoutTarget
impl RefUnwindSafe for SelectLayoutTarget
impl Send for SelectLayoutTarget
impl Sync for SelectLayoutTarget
impl Unpin for SelectLayoutTarget
impl UnsafeUnpin for SelectLayoutTarget
impl UnwindSafe for SelectLayoutTarget
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