pub struct TiledPlacement {
pub parent: Option<Container>,
pub index: u32,
pub layout_scheme: LayoutScheme,
}Expand description
Placement parameters for a tiled window.
Used with Placement::Tiled.
Fields§
§parent: Option<Container>The parent container.
index: u32The index at which to place the container.
layout_scheme: LayoutSchemeThe requested layout scheme.
Trait Implementations§
Source§impl Clone for TiledPlacement
impl Clone for TiledPlacement
Source§fn clone(&self) -> TiledPlacement
fn clone(&self) -> TiledPlacement
Returns a duplicate 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 TiledPlacement
impl Debug for TiledPlacement
Source§impl Default for TiledPlacement
impl Default for TiledPlacement
Source§fn default() -> TiledPlacement
fn default() -> TiledPlacement
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TiledPlacement
impl RefUnwindSafe for TiledPlacement
impl Send for TiledPlacement
impl Sync for TiledPlacement
impl Unpin for TiledPlacement
impl UnwindSafe for TiledPlacement
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