pub struct ExceptionTableEntry {
pub start_pc: u16,
pub end_pc: u16,
pub handler_pc: u16,
pub catch_type: u16,
}Fields§
§start_pc: u16§end_pc: u16§handler_pc: u16§catch_type: u16Trait Implementations§
Source§impl Clone for ExceptionTableEntry
impl Clone for ExceptionTableEntry
Source§fn clone(&self) -> ExceptionTableEntry
fn clone(&self) -> ExceptionTableEntry
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 ExceptionTableEntry
impl RefUnwindSafe for ExceptionTableEntry
impl Send for ExceptionTableEntry
impl Sync for ExceptionTableEntry
impl Unpin for ExceptionTableEntry
impl UnwindSafe for ExceptionTableEntry
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