[][src]Struct basic::mach::Link

pub struct Link { /* fields omitted */ }

Methods

impl Link[src]

pub fn new() -> Link[src]

pub fn clear(&mut self)[src]

pub fn next_symbol(&mut self) -> Symbol[src]

pub fn insert(&mut self, sym: Symbol, addr: Address)[src]

pub fn symbol_for_line_number(
    &mut self,
    line_number: LineNumber
) -> Result<Symbol, Error>
[src]

pub fn begin_for_loop(
    &mut self,
    addr: Address,
    col: Column,
    var_name: String
) -> Result<(), Error>
[src]

pub fn next_for_loop(
    &mut self,
    addr: Address,
    col: Column,
    var_name: String
) -> Result<(), Error>
[src]

pub fn set_start_of_direct(&mut self, op_addr: Address)[src]

pub fn line_number_for(&self, op_addr: Address) -> LineNumber[src]

Trait Implementations

impl Debug for Link[src]

impl Default for Link[src]

Auto Trait Implementations

impl RefUnwindSafe for Link

impl Send for Link

impl Sync for Link

impl Unpin for Link

impl UnwindSafe for Link

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.