Struct jvm_classfile::attr::info::method::code::ExceptionHandler [] [src]

pub struct ExceptionHandler {
    pub start_pc: usize,
    pub end_pc: usize,
    pub handler_pc: usize,
    // some fields omitted
}

Fields

start_pc
end_pc
handler_pc

Methods

impl ExceptionHandler

fn read<R: Read>(reader: &mut R) -> Result<ExceptionHandler>

fn catch_type<'a>(&self, pool: &'a ConstantPool) -> Option<&'a ConstantClassInfo>

impl ExceptionHandler

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

Trait Implementations

Derived Implementations

impl Debug for ExceptionHandler

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