#[repr(C)]pub struct Event {
pub userdata: Userdata,
pub error: Errno,
pub type_: Eventtype,
pub fd_readwrite: EventFdReadwrite,
}Fields
userdata: UserdataUser-provided value that got attached to subscription::userdata.
error: ErrnoIf non-zero, an error that occurred while processing the subscription request.
type_: EventtypeThe type of event that occured
fd_readwrite: EventFdReadwriteThe contents of the event, if it is an eventtype::fd_read or
eventtype::fd_write. eventtype::clock events ignore this field.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more