[][src]Struct queen_io::epoll::Ready

pub struct Ready(_);

Implementations

impl Ready[src]

pub fn empty() -> Ready[src]

pub fn readable() -> Ready[src]

pub fn writable() -> Ready[src]

pub fn error() -> Ready[src]

pub fn hup() -> Ready[src]

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

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

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

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

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

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

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

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

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

Trait Implementations

impl BitAnd<Ready> for Ready[src]

type Output = Ready

The resulting type after applying the & operator.

impl BitOr<Ready> for Ready[src]

type Output = Ready

The resulting type after applying the | operator.

impl BitXor<Ready> for Ready[src]

type Output = Ready

The resulting type after applying the ^ operator.

impl Clone for Ready[src]

impl Copy for Ready[src]

impl Debug for Ready[src]

impl Eq for Ready[src]

impl From<usize> for Ready[src]

impl Not for Ready[src]

type Output = Ready

The resulting type after applying the ! operator.

impl Ord for Ready[src]

impl PartialEq<Ready> for Ready[src]

impl PartialOrd<Ready> for Ready[src]

impl StructuralEq for Ready[src]

impl StructuralPartialEq for Ready[src]

impl Sub<Ready> for Ready[src]

type Output = Ready

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for Ready

impl Send for Ready

impl Sync for Ready

impl Unpin for Ready

impl UnwindSafe for Ready

Blanket Implementations

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

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.