pub struct ParsedLabel {
pub name: String,
pub address: u32,
pub line_number: usize,
pub column: usize,
}Expand description
Represents a parsed label definition.
Fields§
§name: String§address: u32The address this label points to.
line_number: usizeOriginal line number for error reporting.
column: usizeOriginal column number for error reporting.
Trait Implementations§
Source§impl Clone for ParsedLabel
impl Clone for ParsedLabel
Source§fn clone(&self) -> ParsedLabel
fn clone(&self) -> ParsedLabel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParsedLabel
impl Debug for ParsedLabel
impl Eq for ParsedLabel
Source§impl PartialEq for ParsedLabel
impl PartialEq for ParsedLabel
impl StructuralPartialEq for ParsedLabel
Auto Trait Implementations§
impl Freeze for ParsedLabel
impl RefUnwindSafe for ParsedLabel
impl Send for ParsedLabel
impl Sync for ParsedLabel
impl Unpin for ParsedLabel
impl UnsafeUnpin for ParsedLabel
impl UnwindSafe for ParsedLabel
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