Struct mio::Ready [] [src]

pub struct Ready(_);

A set of readiness events returned by Poll.

Methods

impl Ready

fn none() -> Ready

fn readable() -> Ready

fn writable() -> Ready

fn error() -> Ready

fn hup() -> Ready

fn all() -> Ready

fn is_none(&self) -> bool

fn is_readable(&self) -> bool

fn is_writable(&self) -> bool

fn is_error(&self) -> bool

fn is_hup(&self) -> bool

fn insert(&mut self, other: Ready)

fn remove(&mut self, other: Ready)

fn bits(&self) -> usize

fn contains(&self, other: Ready) -> bool

Trait Implementations

impl BitOr for Ready

type Output = Ready

fn bitor(self, other: Ready) -> Ready

impl BitXor for Ready

type Output = Ready

fn bitxor(self, other: Ready) -> Ready

impl BitAnd for Ready

type Output = Ready

fn bitand(self, other: Ready) -> Ready

impl Sub for Ready

type Output = Ready

fn sub(self, other: Ready) -> Ready

impl Not for Ready

type Output = Ready

fn not(self) -> Ready

impl Debug for Ready

fn fmt(&self, fmt: &mut Formatter) -> Result

Derived Implementations

impl Ord for Ready

fn cmp(&self, __arg_0: &Ready) -> Ordering

impl PartialOrd for Ready

fn partial_cmp(&self, __arg_0: &Ready) -> Option<Ordering>

fn lt(&self, __arg_0: &Ready) -> bool

fn le(&self, __arg_0: &Ready) -> bool

fn gt(&self, __arg_0: &Ready) -> bool

fn ge(&self, __arg_0: &Ready) -> bool

impl Clone for Ready

fn clone(&self) -> Ready

1.0.0fn clone_from(&mut self, source: &Self)

impl Eq for Ready

impl PartialEq for Ready

fn eq(&self, __arg_0: &Ready) -> bool

fn ne(&self, __arg_0: &Ready) -> bool

impl Copy for Ready