pub enum ControlOptions {
    EPOLL_CTL_ADD,
    EPOLL_CTL_MOD,
    EPOLL_CTL_DEL,
}

Variants

EPOLL_CTL_ADD

Indicates an addition to the interest list.

EPOLL_CTL_MOD

Indicates a modification of flags for an interest already in list.

EPOLL_CTL_DEL

Indicates a removal of an interest from the list.

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 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.