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: u16
max_locals: u16
code_length: u32
code: Vec<u8>
exception_table_length: u16
exception_table: Vec<ExceptionEntry>
attributes_count: u16
attributes: Vec<AttributeInfo>
Trait Implementations
impl Clone for CodeAttribute[src]
impl Clone for CodeAttributefn clone(&self) -> CodeAttribute[src]
fn clone(&self) -> CodeAttributeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for CodeAttribute[src]
impl Debug for CodeAttributeAuto Trait Implementations
impl Send for CodeAttribute
impl Send for CodeAttributeimpl Sync for CodeAttribute
impl Sync for CodeAttribute