#[repr(C)]pub struct sigset_t { /* private fields */ }
Expand description
A set of signals for use with signal blocking functions.
Implementations§
Source§impl sigset_t
impl sigset_t
pub const fn new_empty() -> Self
pub const fn new_filled() -> Self
pub fn sigemptyset(&mut self)
pub fn sigfillset(&mut self)
pub fn sigaddset(&mut self, signum: int) -> Result<()>
pub fn sigdelset(&mut self, signum: int) -> Result<()>
pub fn sigismember(&mut self, signum: int) -> Result<bool>
pub fn as_ptr(&self) -> *const Self
pub fn as_mut_ptr(&mut self) -> *mut Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for sigset_t
impl RefUnwindSafe for sigset_t
impl Send for sigset_t
impl Sync for sigset_t
impl Unpin for sigset_t
impl UnwindSafe for sigset_t
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