Struct gluon_vm::stack::Frame [] [src]

pub struct Frame {
    pub offset: VMIndex,
    pub instruction_index: usize,
    pub state: State,
    pub excess: bool,
}

Fields

offset: VMIndex instruction_index: usize state: State excess: bool

Trait Implementations

impl PartialEq for Frame
[src]

fn eq(&self, __arg_0: &Frame) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Frame) -> bool

This method tests for !=.

impl Debug for Frame
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Frame
[src]

fn clone(&self) -> Frame

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Frame
[src]