Struct jvm::classfile::field::FieldInfo [] [src]

pub struct FieldInfo {
    pub access_flags: AccessFlags,
    pub attrs: Vec<Attr>,
    // some fields omitted
}

Fields

access_flags
attrs

Methods

impl FieldInfo

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

impl FieldInfo

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

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

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

Trait Implementations

Derived Implementations

impl Debug for FieldInfo

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