Struct classfile_parser::attribute_info::CodeAttribute [−][src]
pub struct CodeAttribute {
pub max_stack: u16,
pub max_locals: u16,
pub code_length: u32,
pub code: Vec<u8>,
pub exception_table_length: u16,
pub exception_table: Vec<ExceptionEntry>,
pub attributes_count: u16,
pub attributes: Vec<AttributeInfo>,
}Fields
max_stack: u16max_locals: u16code_length: u32code: Vec<u8>exception_table_length: u16exception_table: Vec<ExceptionEntry>attributes_count: u16attributes: Vec<AttributeInfo>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CodeAttributeimpl Send for CodeAttributeimpl Sync for CodeAttributeimpl Unpin for CodeAttributeimpl UnwindSafe for CodeAttributeBlanket Implementations
Mutably borrows from an owned value. Read more