[][src]Struct queen_io::epoll::EpollOpt

pub struct EpollOpt(_);

Methods

impl EpollOpt[src]

pub fn empty() -> EpollOpt[src]

pub fn edge() -> EpollOpt[src]

pub fn level() -> EpollOpt[src]

pub fn oneshot() -> EpollOpt[src]

pub fn is_edge(self) -> bool[src]

pub fn is_level(self) -> bool[src]

pub fn is_oneshot(self) -> bool[src]

pub fn contains(self, other: EpollOpt) -> bool[src]

pub fn insert(&mut self, other: EpollOpt)[src]

pub fn remove(&mut self, other: EpollOpt)[src]

pub fn as_usize(self) -> usize[src]

Trait Implementations

impl From<usize> for EpollOpt[src]

impl Clone for EpollOpt[src]

impl Copy for EpollOpt[src]

impl Eq for EpollOpt[src]

impl Ord for EpollOpt[src]

impl PartialEq<EpollOpt> for EpollOpt[src]

impl PartialOrd<EpollOpt> for EpollOpt[src]

impl Debug for EpollOpt[src]

impl Sub<EpollOpt> for EpollOpt[src]

type Output = EpollOpt

The resulting type after applying the - operator.

impl Not for EpollOpt[src]

type Output = EpollOpt

The resulting type after applying the ! operator.

impl BitAnd<EpollOpt> for EpollOpt[src]

type Output = EpollOpt

The resulting type after applying the & operator.

impl BitOr<EpollOpt> for EpollOpt[src]

type Output = EpollOpt

The resulting type after applying the | operator.

impl BitXor<EpollOpt> for EpollOpt[src]

type Output = EpollOpt

The resulting type after applying the ^ operator.

impl StructuralPartialEq for EpollOpt[src]

impl StructuralEq for EpollOpt[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]