pub struct LayoutGroup {
pub label: String,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
pub tags: Vec<String>,
pub depth: usize,
pub children: Vec<LayoutGroup>,
}Fields§
§label: String§x: f64§y: f64§width: f64§height: f64§depth: usize§children: Vec<LayoutGroup>Trait Implementations§
Source§impl Clone for LayoutGroup
impl Clone for LayoutGroup
Source§fn clone(&self) -> LayoutGroup
fn clone(&self) -> LayoutGroup
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 moreAuto Trait Implementations§
impl Freeze for LayoutGroup
impl RefUnwindSafe for LayoutGroup
impl Send for LayoutGroup
impl Sync for LayoutGroup
impl Unpin for LayoutGroup
impl UnsafeUnpin for LayoutGroup
impl UnwindSafe for LayoutGroup
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