[][src]Struct simple_libc::signal::Sigset

#[repr(transparent)]pub struct Sigset { /* fields omitted */ }

Implementations

impl Sigset[src]

pub fn empty() -> Sigset[src]

pub fn full() -> Sigset[src]

pub fn clear(&mut self)[src]

pub fn fill(&mut self)[src]

pub fn add(&mut self, sig: i32) -> Result<()>[src]

pub fn del(&mut self, sig: i32) -> Result<()>[src]

pub fn ismember(&self, sig: i32) -> Result<bool>[src]

pub fn raw_set(&self) -> sigset_t[src]

pub fn into_raw_set(self) -> sigset_t[src]

Trait Implementations

impl Clone for Sigset[src]

impl Copy for Sigset[src]

impl Default for Sigset[src]

impl From<sigset_t> for Sigset[src]

Auto Trait Implementations

impl RefUnwindSafe for Sigset

impl Send for Sigset

impl Sync for Sigset

impl Unpin for Sigset

impl UnwindSafe for Sigset

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.