pub struct TiledPlacement {
pub parent: Option<Container>,
pub index: u32,
pub layout_scheme: LayoutScheme,
}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
Source§impl From<TiledPlacement> for miracle_tiled_placement_t
impl From<TiledPlacement> for miracle_tiled_placement_t
Source§fn from(value: TiledPlacement) -> Self
fn from(value: TiledPlacement) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TiledPlacement
impl RefUnwindSafe for TiledPlacement
impl Send for TiledPlacement
impl Sync for TiledPlacement
impl Unpin for TiledPlacement
impl UnsafeUnpin 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