pub struct Line(pub usize, pub Option<Label>, pub Vec<String>);Expand description
A lexed source line, consisting of its line number, an optional label, and one or more lexemes that form an instruction.
Tuple Fields§
§0: usize§1: Option<Label>§2: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnwindSafe for Line
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