pub enum UnsupportedSignalError {
UnsupportedSigno {
signo: c_int,
},
UnsupportedCode {
signo: c_int,
code: c_int,
},
}
Expand description
Variants§
UnsupportedSigno
The signal number is not supported.
UnsupportedCode
The signal number is supported, but the code is not.
Trait Implementations§
Source§impl Clone for UnsupportedSignalError
impl Clone for UnsupportedSignalError
Source§fn clone(&self) -> UnsupportedSignalError
fn clone(&self) -> UnsupportedSignalError
Returns a copy 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 moreSource§impl Debug for UnsupportedSignalError
impl Debug for UnsupportedSignalError
Source§impl Display for UnsupportedSignalError
impl Display for UnsupportedSignalError
Source§impl Error for UnsupportedSignalError
impl Error for UnsupportedSignalError
1.30.0 · 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()
impl Copy for UnsupportedSignalError
Auto Trait Implementations§
impl Freeze for UnsupportedSignalError
impl RefUnwindSafe for UnsupportedSignalError
impl Send for UnsupportedSignalError
impl Sync for UnsupportedSignalError
impl Unpin for UnsupportedSignalError
impl UnwindSafe for UnsupportedSignalError
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