Struct event_manager::Events

source ·
pub struct Events { /* private fields */ }
Expand description

Wrapper over an epoll::EpollEvent object.

When working directly with epoll related methods, the user associates an u64 wide epoll_data_t object with every event. We want to use fds as identifiers, but at the same time keep the ability to associate opaque data with an event. An Events object always contains an fd and an u32 data member that can be supplied by the user. When registering events with the inner epoll event set, the fd and data members of Events are used together to generate the underlying u64 member of the epoll_data union.

Implementations

Create an empty event set associated with source.

No explicit events are monitored for the associated file descriptor. Nevertheless, EventSet::ERROR and EventSet::HANG_UP are implicitly monitored.

Arguments
  • source: object that wraps a file descriptor to be associated with events
Example
let eventfd = EventFd::new(0).unwrap();
let ev_set = Events::empty(&eventfd);

Create an empty event set associated with the supplied RawFd value.

No explicit events are monitored for the associated file descriptor. Nevertheless, EventSet::ERROR and EventSet::HANG_UP are implicitly monitored.

Example
let eventfd = EventFd::new(0).unwrap();
let ev_set = Events::empty_raw(eventfd.as_raw_fd());

Create an event with source and the associated events for monitoring.

Arguments
  • source: object that wraps a file descriptor to be associated with events
  • events: events to monitor on the provided source; EventSet::ERROR and EventSet::HANG_UP are always monitored and don’t need to be explicitly added to the list.
Example
let eventfd = EventFd::new(0).unwrap();
let event_set = EventSet::IN;
let ev_set = Events::new(&eventfd, event_set);

Create an event with the supplied RawFd value and events for monitoring.

Arguments
  • source: file descriptor on which to monitor the events
  • events: events to monitor on the provided source; EventSet::ERROR and EventSet::HANG_UP are always monitored and don’t need to be explicitly added to the list.
Example
let eventfd = EventFd::new(0).unwrap();
let event_set = EventSet::IN;
let ev_set = Events::new_raw(eventfd.as_raw_fd(), event_set);

Create an event set associated with the underlying file descriptor of the source, active events, and data.

Arguments
  • source: object that wraps a file descriptor to be associated with events
  • data: custom user data associated with the file descriptor; the data can be used for uniquely identify monitored events instead of using the file descriptor.
  • events: events to monitor on the provided source; EventSet::ERROR and EventSet::HANG_UP are always monitored and don’t need to be explicitly added to the list.
Examples
let eventfd = EventFd::new(0).unwrap();
let event_set = EventSet::IN;
let custom_data = 42;
let ev_set = Events::with_data(&eventfd, custom_data, event_set);

Create an event set associated with the supplied RawFd value, active events, and data.

Arguments
  • source: file descriptor to be associated with events
  • data: custom user data associated with the file descriptor; the data can be used for uniquely identify monitored events instead of using the file descriptor.
  • events: events to monitor on the provided source; EventSet::ERROR and EventSet::HANG_UP are always monitored and don’t need to be explicitly added to the list.
Examples
let eventfd = EventFd::new(0).unwrap();
let event_set = EventSet::IN;
let custom_data = 42;
let ev_set = Events::with_data_raw(eventfd.as_raw_fd(), custom_data, event_set);

Return the inner fd value.

Return the inner data value.

Return the active event set.

Return the inner EpollEvent.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.