pub struct Stack {
pub flip: Flip,
pub rotate: Rotation,
pub split: Option<Split>,
}
Expand description
Configurations concerning the stack
column
Fields§
§flip: Flip
Flip modifier to apply only to the stack
columns’ contents
rotate: Rotation
Rotation modifier to apply only to the stack
columns’ contents
split: Option<Split>
How tiles (windows) inside the stack
column should be split up,
when there is more than one.
Note: This can be set to None
, in which case the stack
column can’t
contain more than one window (eg. Monocle
, MainAndDeck
)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stack
impl<'de> Deserialize<'de> for Stack
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
impl StructuralPartialEq for Stack
Auto Trait Implementations§
impl Freeze for Stack
impl RefUnwindSafe for Stack
impl Send for Stack
impl Sync for Stack
impl Unpin for Stack
impl UnwindSafe for Stack
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