pub struct ParsedAssembly {
pub sections: Vec<Section>,
pub symbols: Vec<Symbol>,
pub instructions: Vec<ParsedInstruction>,
pub lines: Vec<Line>,
}Fields§
§sections: Vec<Section>§symbols: Vec<Symbol>§instructions: Vec<ParsedInstruction>§lines: Vec<Line>Auto Trait Implementations§
impl Freeze for ParsedAssembly
impl RefUnwindSafe for ParsedAssembly
impl Send for ParsedAssembly
impl Sync for ParsedAssembly
impl Unpin for ParsedAssembly
impl UnsafeUnpin for ParsedAssembly
impl UnwindSafe for ParsedAssembly
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