[][src]Enum sys_util::signal::Error

pub enum Error {
    CreateSigset(Error),
    SignalAlreadyBlocked(c_int),
    CompareBlockedSignals(Error),
    BlockSignal(Error),
    RetrieveSignalMask(i32),
    UnblockSignal(Error),
    ClearWaitPending(Error),
    ClearGetPending(Error),
    ClearCheckPending(Error),
}

Variants

CreateSigset(Error)

Couldn't create a sigset.

SignalAlreadyBlocked(c_int)

The wrapped signal has already been blocked.

CompareBlockedSignals(Error)

Failed to check if the requested signal is in the blocked set already.

BlockSignal(Error)

The signal could not be blocked.

RetrieveSignalMask(i32)

The signal mask could not be retrieved.

UnblockSignal(Error)

The signal could not be unblocked.

ClearWaitPending(Error)

Failed to wait for given signal.

ClearGetPending(Error)

Failed to get pending signals.

ClearCheckPending(Error)

Failed to check if given signal is in the set of pending signals.

Trait Implementations

impl Debug for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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