pub enum ExternalUnwindInfoError {
AlreadyRegistered,
NotRegistered,
}
Expand description
Errors that may occur when registering or [deregistering] external unwind info.
[deregistering] deregister_unwind_info
Variants§
AlreadyRegistered
The unwinding info trying to be registered was already registered.
NotRegistered
The unwinding info trying to be deregistered was not yet registered.
Auto Trait Implementations§
impl RefUnwindSafe for ExternalUnwindInfoError
impl Send for ExternalUnwindInfoError
impl Sync for ExternalUnwindInfoError
impl Unpin for ExternalUnwindInfoError
impl UnwindSafe for ExternalUnwindInfoError
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