Struct rust_jvm::model::class_file::FieldInfo [] [src]

pub struct FieldInfo {
    pub access_flags: t,
    pub name_index: constant_pool_index,
    pub descriptor_index: constant_pool_index,
    pub attributes: Vec<AttributeInfo>,
}

Fields

access_flags

Mask of flags used to denote access permissions to and properties of this field.

name_index

A valid index into the constant_pool table. The constant_pool entry at that index must be a ConstantPoolInfo::Utf8 structure representing a valid unqualified name denoting a field.

descriptor_index

A valid index into the constant_pool table. The constant_pool entry at that index must be a ConstantPoolInfo::Utf8 structure representing a valid unqualified name denoting a field.

attributes

The attributes associated with this field.

Trait Implementations

Derived Implementations

impl Debug for FieldInfo

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