Struct librsnek::system::primitives::Code [] [src]

pub struct Code {
    pub co_name: String,
    pub co_names: Vec<String>,
    pub co_varnames: Vec<String>,
    pub co_code: Vec<Instr>,
    pub co_consts: Vec<Code>,
}

Defines the bytecode object.

Fields

Trait Implementations

impl Debug for Code
[src]

Formats the value using the given formatter.

impl Clone for Code
[src]

Returns a copy of the value.

Performs copy-assignment from source.