pub struct Group {
pub id: String,
pub label: String,
pub parent_group_id: Option<String>,
pub children: Vec<ElementId>,
pub layout: Option<Layout>,
}Expand description
A normalized containment group.
Fields§
§id: StringGlobally unique source identifier.
label: StringVisible group label.
parent_group_id: Option<String>Nearest containing group, if any.
children: Vec<ElementId>Direct children in declaration order.
layout: Option<Layout>Optional group-scoped layout input.
Trait Implementations§
impl Eq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnsafeUnpin for Group
impl UnwindSafe for Group
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