pub struct RawExceptionHandler {
pub start_pc: u16,
pub end_pc: u16,
pub handler_pc: u16,
pub catch_type_index: u16,
}Expand description
JVM 异常处理表项(二进制表示)
Fields§
§start_pc: u16起始 PC
end_pc: u16结束 PC
handler_pc: u16处理器 PC
catch_type_index: u16异常类型索引
Trait Implementations§
Source§impl Clone for RawExceptionHandler
impl Clone for RawExceptionHandler
Source§fn clone(&self) -> RawExceptionHandler
fn clone(&self) -> RawExceptionHandler
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RawExceptionHandler
impl RefUnwindSafe for RawExceptionHandler
impl Send for RawExceptionHandler
impl Sync for RawExceptionHandler
impl Unpin for RawExceptionHandler
impl UnwindSafe for RawExceptionHandler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more