Struct jvm::classfile::attr::info::code::local_variable::LocalVariable [] [src]

pub struct LocalVariable {
    pub start_pc: usize,
    pub length: usize,
    pub index: usize,
    // some fields omitted
}

Fields

start_pc
length
index

Methods

impl LocalVariable

fn print<W>(&self, printer: &mut Printer<W>, constant_pool: &ConstantPool) -> Result<(), Error> where W: Write

impl LocalVariable

fn read<R>(reader: &mut R) -> Result<LocalVariable, Error> where R: Read

fn name(&self, constant_pool: &'a ConstantPool) -> Option<&'a str>

fn desc(&self, constant_pool: &'a ConstantPool) -> Option<&'a str>

Trait Implementations

Derived Implementations

impl Debug for LocalVariable

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