Struct wasix::lib_generated64::Event
source · #[repr(C)]pub struct Event {
pub userdata: u64,
pub error: Errno,
pub type_: Eventtype,
pub fd_readwrite: EventFdReadwrite,
}
Fields§
§userdata: u64
User-provided value that got attached to subscription::userdata
.
error: Errno
If non-zero, an error that occurred while processing the subscription request.
type_: Eventtype
The type of event that occured
fd_readwrite: EventFdReadwrite
The 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§
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
Mutably borrows from an owned value. Read more