#[repr(C)]pub struct SigEvent { /* private fields */ }
Expand description
Used to request asynchronous notification of the completion of certain events, such as POSIX AIO and timers.
Implementations§
source§impl SigEvent
impl SigEvent
sourcepub fn new(sigev_notify: SigevNotify<'_>) -> SigEvent
pub fn new(sigev_notify: SigevNotify<'_>) -> SigEvent
Note: this constructor does not allow the user to set the
sigev_notify_kevent_flags
field. That’s considered ok because on FreeBSD
at least those flags don’t do anything useful. That field is part of a
union that shares space with the more genuinely useful fields.
Note: This constructor also doesn’t allow the caller to set the
sigev_notify_function
or sigev_notify_attributes
fields, which are
required for SIGEV_THREAD
. That’s considered ok because on no operating
system is SIGEV_THREAD
the most efficient way to deliver AIO
notification. FreeBSD and DragonFly BSD programs should prefer SIGEV_KEVENT
.
Linux, Solaris, and portable programs should prefer SIGEV_THREAD_ID
or
SIGEV_SIGNAL
. That field is part of a union that shares space with the
more genuinely useful sigev_notify_thread_id
sourcepub fn as_mut_ptr(&mut self) -> *mut sigevent
pub fn as_mut_ptr(&mut self) -> *mut sigevent
Returns a mutable pointer to the sigevent
wrapped by self
Trait Implementations§
impl Eq for SigEvent
impl StructuralPartialEq for SigEvent
Auto Trait Implementations§
impl Freeze for SigEvent
impl RefUnwindSafe for SigEvent
impl !Send for SigEvent
impl !Sync for SigEvent
impl Unpin for SigEvent
impl UnwindSafe for SigEvent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)