Enum SigevNotify

enum SigevNotify<'fd>

Specifies the notification method used by a SigEvent

Variants

SigevNone

No notification will be delivered

SigevSignal { signal: Signal, si_value: libc::intptr_t }

Notify by delivering a signal to the process.

SigevThreadId { signal: Signal, thread_id: type_of_thread_id, si_value: libc::intptr_t }

Notify by delivering a signal to a thread.

Implementations

impl<'fd> Clone for SigevNotify<'fd>

fn clone(self: &Self) -> SigevNotify<'fd>

impl<'fd> Copy for SigevNotify<'fd>

impl<'fd> Debug for SigevNotify<'fd>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<'fd> Freeze for SigevNotify<'fd>

impl<'fd> RefUnwindSafe for SigevNotify<'fd>

impl<'fd> Send for SigevNotify<'fd>

impl<'fd> Sync for SigevNotify<'fd>

impl<'fd> Unpin for SigevNotify<'fd>

impl<'fd> UnsafeUnpin for SigevNotify<'fd>

impl<'fd> UnwindSafe for SigevNotify<'fd>

impl<T> Any for SigevNotify<'fd>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for SigevNotify<'fd>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for SigevNotify<'fd>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for SigevNotify<'fd>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for SigevNotify<'fd>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for SigevNotify<'fd>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for SigevNotify<'fd>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for SigevNotify<'fd>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for SigevNotify<'fd>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>