Enum nix::sys::signal::SigmaskHow
#[repr(i32)]
#[non_exhaustive]
pub enum SigmaskHow {
SIG_BLOCK,
SIG_UNBLOCK,
SIG_SETMASK,
}Documentation
Specifies how certain functions should manipulate a signal mask
Variants
SIG_BLOCKThe new mask is the union of the current mask and the specified set.
SIG_UNBLOCKThe new mask is the intersection of the current mask and the complement of the specified set.
SIG_SETMASKThe current mask is replaced by the specified set.
Trait Implementations
impl Clone for SigmaskHow
fn clone(&Self) -> SigmaskHowimpl Copy for SigmaskHowimpl Debug for SigmaskHow
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Resultimpl Eq for SigmaskHowimpl Hash for SigmaskHow
fn hash<__H: $crate::hash::Hasher>(&Self, state: &mut __H) -> ()impl Ord for SigmaskHow
fn cmp(&Self, other: &SigmaskHow) -> $crate::cmp::Orderingimpl PartialEq<SigmaskHow> for SigmaskHow
fn eq(&Self, other: &SigmaskHow) -> boolimpl PartialOrd<SigmaskHow> for SigmaskHow
fn partial_cmp(&Self, other: &SigmaskHow) -> $crate::option::Option<$crate::cmp::Ordering>impl StructuralEq for SigmaskHowimpl StructuralPartialEq for SigmaskHowAuto Trait Implementations
impl RefUnwindSafe for SigmaskHowimpl Send for SigmaskHowimpl Sync for SigmaskHowimpl Unpin for SigmaskHowimpl UnwindSafe for SigmaskHowBlanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T