pub enum BitmapType {
SigPnd,
ShdPnd,
SigBlk,
SigIgn,
SigCgt,
}
Expand description
The type of signal bitmap.
Variants§
SigPnd
Pending signals (thread).
ShdPnd
Pending signals (shared between threads in a process).
SigBlk
Blocked signals.
SigIgn
Ignored signals.
SigCgt
Caught signals.
Trait Implementations§
Source§impl Clone for BitmapType
impl Clone for BitmapType
Source§fn clone(&self) -> BitmapType
fn clone(&self) -> BitmapType
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 BitmapType
impl Debug for BitmapType
Source§impl Default for BitmapType
impl Default for BitmapType
Source§fn default() -> BitmapType
fn default() -> BitmapType
Returns the “default value” for a type. Read more
Source§impl Display for BitmapType
impl Display for BitmapType
Source§impl ValueEnum for BitmapType
impl ValueEnum for BitmapType
Auto Trait Implementations§
impl Freeze for BitmapType
impl RefUnwindSafe for BitmapType
impl Send for BitmapType
impl Sync for BitmapType
impl Unpin for BitmapType
impl UnwindSafe for BitmapType
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