pub enum InterruptInstallError {
NoSuchSignal {
signal: String,
},
MultipleHandlers,
System {
source: Arc<Error>,
},
}Variants§
Trait Implementations§
Source§impl Clone for InterruptInstallError
impl Clone for InterruptInstallError
Source§fn clone(&self) -> InterruptInstallError
fn clone(&self) -> InterruptInstallError
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 moreSource§impl Debug for InterruptInstallError
impl Debug for InterruptInstallError
Source§impl Display for InterruptInstallError
impl Display for InterruptInstallError
Source§impl Error for InterruptInstallError
impl Error for InterruptInstallError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for InterruptInstallError
impl !UnwindSafe for InterruptInstallError
impl Freeze for InterruptInstallError
impl Send for InterruptInstallError
impl Sync for InterruptInstallError
impl Unpin for InterruptInstallError
impl UnsafeUnpin for InterruptInstallError
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