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 print<W>(&self, printer: &mut Printer<W>, constant_pool: &ConstantPool) -> Result<(), Error> where W: Write

impl ExceptionHandler

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

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

Trait Implementations

Derived Implementations

impl Debug for ExceptionHandler

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