pub enum RootItem {
Statement(Statement),
Command(Command),
Memory {
regions: Vec<Region>,
},
Sections {
list: Vec<SectionCommand>,
},
}
Variants§
Trait Implementations§
impl StructuralPartialEq for RootItem
Auto Trait Implementations§
impl Freeze for RootItem
impl RefUnwindSafe for RootItem
impl Send for RootItem
impl Sync for RootItem
impl Unpin for RootItem
impl UnwindSafe for RootItem
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