Struct classfile_parser::types::ClassFile[][src]

pub struct ClassFile {
Show fields pub minor_version: u16, pub major_version: u16, pub const_pool_size: u16, pub const_pool: Vec<ConstantInfo>, pub access_flags: ClassAccessFlags, pub this_class: u16, pub super_class: u16, pub interfaces_count: u16, pub interfaces: Vec<u16>, pub fields_count: u16, pub fields: Vec<FieldInfo>, pub methods_count: u16, pub methods: Vec<MethodInfo>, pub attributes_count: u16, pub attributes: Vec<AttributeInfo>,
}

Fields

minor_version: u16major_version: u16const_pool_size: u16const_pool: Vec<ConstantInfo>access_flags: ClassAccessFlagsthis_class: u16super_class: u16interfaces_count: u16interfaces: Vec<u16>fields_count: u16fields: Vec<FieldInfo>methods_count: u16methods: Vec<MethodInfo>attributes_count: u16attributes: Vec<AttributeInfo>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.