Enum gluon_vm::stack::State [] [src]

pub enum State {
    Unknown,
    Lock,
    Excess,
    Closure(GcPtr<ClosureData>),
    Extern(GcPtr<ExternFunction>),
}

Variants

Locked frame which can only be unlocked by the caller which introduced the lock

Extra frame introduced to store a call with excess arguments

Trait Implementations

impl Copy for State
[src]

impl Clone for State
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for State
[src]

Formats the value using the given formatter.

impl PartialEq for State
[src]

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

This method tests for !=.