Struct jbcrs::basic::LocalVariableType [] [src]

pub struct LocalVariableType {
    pub start: u16,
    pub length: u16,
    pub name: u16,
    pub signature: u16,
    pub index: u16,
}

An entry of the LocalVariableTypeTable

Fields

Start of the Code.

Length of the Code.

The index to an Item::UTF8(_) representing a valid unqalified name.

The index to an Item::UTF8(_) representing a field signature.

The index in the local variable array of the current frame. double and long do occupy two spaces.

Trait Implementations

impl Debug for LocalVariableType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations