pub struct ExceptionHandler {
pub start: Pc,
pub end: Pc,
pub handler: Pc,
pub catch_register: Register,
}Expand description
A half-open protected range [start, end), its handler entry PC, and the
register that receives the thrown value on dispatch.
Fields§
§start: Pc§end: Pc§handler: Pc§catch_register: RegisterTrait Implementations§
Source§impl Clone for ExceptionHandler
impl Clone for ExceptionHandler
Source§fn clone(&self) -> ExceptionHandler
fn clone(&self) -> ExceptionHandler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExceptionHandler
Source§impl Debug for ExceptionHandler
impl Debug for ExceptionHandler
impl Eq for ExceptionHandler
Source§impl PartialEq for ExceptionHandler
impl PartialEq for ExceptionHandler
impl StructuralPartialEq for ExceptionHandler
Auto Trait Implementations§
impl Freeze for ExceptionHandler
impl RefUnwindSafe for ExceptionHandler
impl Send for ExceptionHandler
impl Sync for ExceptionHandler
impl Unpin for ExceptionHandler
impl UnsafeUnpin for ExceptionHandler
impl UnwindSafe for ExceptionHandler
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