Struct interprocess::os::windows::signal::UnknownSignalError
source · pub struct UnknownSignalError {
pub value: i32,
}Available on Windows and crate feature
signals only.Expand description
Error type returned when a conversion from i32/u32 to SignalType fails.
Fields
value: i32The unknown signal value which was encountered.
Trait Implementations
sourceimpl Binary for UnknownSignalError
impl Binary for UnknownSignalError
sourceimpl Clone for UnknownSignalError
impl Clone for UnknownSignalError
sourcefn clone(&self) -> UnknownSignalError
fn clone(&self) -> UnknownSignalError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UnknownSignalError
impl Debug for UnknownSignalError
sourceimpl Display for UnknownSignalError
impl Display for UnknownSignalError
sourceimpl Error for UnknownSignalError
impl Error for UnknownSignalError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl LowerHex for UnknownSignalError
impl LowerHex for UnknownSignalError
sourceimpl Octal for UnknownSignalError
impl Octal for UnknownSignalError
sourceimpl PartialEq<UnknownSignalError> for UnknownSignalError
impl PartialEq<UnknownSignalError> for UnknownSignalError
sourcefn eq(&self, other: &UnknownSignalError) -> bool
fn eq(&self, other: &UnknownSignalError) -> bool
sourceimpl UpperExp for UnknownSignalError
impl UpperExp for UnknownSignalError
impl Copy for UnknownSignalError
impl Eq for UnknownSignalError
impl StructuralEq for UnknownSignalError
impl StructuralPartialEq for UnknownSignalError
Auto Trait Implementations
impl RefUnwindSafe for UnknownSignalError
impl Send for UnknownSignalError
impl Sync for UnknownSignalError
impl Unpin for UnknownSignalError
impl UnwindSafe for UnknownSignalError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more