pub enum LayoutItemKindData {
Component {
name: String,
},
Group {
len_field_tag: u32,
items: Vec<LayoutItemData>,
},
Field {
tag: u32,
},
}Variants§
Trait Implementations§
Source§impl Clone for LayoutItemKindData
impl Clone for LayoutItemKindData
Source§fn clone(&self) -> LayoutItemKindData
fn clone(&self) -> LayoutItemKindData
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 LayoutItemKindData
impl RefUnwindSafe for LayoutItemKindData
impl Send for LayoutItemKindData
impl Sync for LayoutItemKindData
impl Unpin for LayoutItemKindData
impl UnwindSafe for LayoutItemKindData
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