Enum nix::sys::signal::SigevNotify [] [src]

pub enum SigevNotify {
    SigevNone,
    SigevSignal {
        signal: Signal,
        si_value: intptr_t,
    },
}

Used to request asynchronous notification of certain events, for example, with POSIX AIO, POSIX message queues, and POSIX timers.

Variants

No notification will be delivered

The signal given by signal will be delivered to the process. The value in si_value will be present in the si_value field of the siginfo_t structure of the queued signal.

Fields of SigevSignal

Trait Implementations

impl Clone for SigevNotify
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SigevNotify
[src]

impl Debug for SigevNotify
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SigevNotify
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for SigevNotify

impl Sync for SigevNotify