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

pub struct Link { /* fields omitted */ }

Methods

impl Link[src]

pub fn append(&mut self, link: Link) -> Result<(), Error>[src]

pub fn push(&mut self, op: Opcode) -> Result<(), Error>[src]

pub fn transform_to_data(&mut self, col: &Column) -> Result<(), Error>[src]

pub fn read_data(&mut self) -> Result<Val, Error>[src]

pub fn restore_data(&mut self, addr: Address)[src]

pub fn get(&self, addr: Address) -> Option<&Opcode>[src]

pub fn last(&self) -> Option<&Opcode>[src]

pub fn drain<R>(&mut self, range: R) -> Drain<Opcode> where
    R: RangeBounds<usize>, 
[src]

pub fn is_empty(&self) -> bool[src]

pub fn len(&self) -> usize[src]

pub fn clear(&mut self)[src]

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

pub fn push_def_fn(
    &mut self,
    col: Column,
    ident: Rc<str>,
    vars: Vec<Rc<str>>,
    expr_ops: Link
) -> Result<(), Error>
[src]

pub fn push_for(&mut self, col: Column) -> Result<(), Error>[src]

pub fn push_gosub(
    &mut self,
    col: Column,
    line_number: LineNumber
) -> Result<(), Error>
[src]

pub fn push_return_val(
    &mut self,
    col: Column,
    symbol: Symbol
) -> Result<(), Error>
[src]

pub fn push_goto(
    &mut self,
    col: Column,
    line_number: LineNumber
) -> Result<(), Error>
[src]

pub fn push_ifnot(&mut self, col: Column, sym: Symbol) -> Result<(), Error>[src]

pub fn push_jump(&mut self, col: Column, sym: Symbol) -> Result<(), Error>[src]

pub fn push_restore(
    &mut self,
    col: Column,
    line_number: LineNumber
) -> Result<(), Error>
[src]

pub fn push_run(
    &mut self,
    col: Column,
    line_number: LineNumber
) -> Result<(), Error>
[src]

pub fn push_symbol(&mut self, sym: Symbol)[src]

pub fn push_wend(&mut self, col: Column) -> Result<(), Error>[src]

pub fn push_while(&mut self, col: Column, expr: Link) -> 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 Clone for Link[src]

impl Debug for Link[src]

impl Default for Link[src]

impl<'_> TryFrom<&'_ Link> for LineNumber[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ Link> for Rc<str>[src]

type Error = Error

The type returned in the event of a conversion error.

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,