[][src]Struct mio::EventSet

pub struct EventSet(_);

Methods

impl EventSet[src]

pub fn none() -> EventSet[src]

pub fn readable() -> EventSet[src]

pub fn writable() -> EventSet[src]

pub fn error() -> EventSet[src]

pub fn hup() -> EventSet[src]

pub fn all() -> EventSet[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: EventSet)[src]

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

pub fn bits(&self) -> usize[src]

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

Trait Implementations

impl Clone for EventSet[src]

impl Copy for EventSet[src]

impl Eq for EventSet[src]

impl Ord for EventSet[src]

impl PartialEq<EventSet> for EventSet[src]

impl PartialOrd<EventSet> for EventSet[src]

impl Debug for EventSet[src]

impl Sub<EventSet> for EventSet[src]

type Output = EventSet

The resulting type after applying the - operator.

impl Not for EventSet[src]

type Output = EventSet

The resulting type after applying the ! operator.

impl BitAnd<EventSet> for EventSet[src]

type Output = EventSet

The resulting type after applying the & operator.

impl BitOr<EventSet> for EventSet[src]

type Output = EventSet

The resulting type after applying the | operator.

impl BitXor<EventSet> for EventSet[src]

type Output = EventSet

The resulting type after applying the ^ operator.

impl StructuralPartialEq for EventSet[src]

impl StructuralEq for EventSet[src]

Auto Trait Implementations

impl Send for EventSet

impl Sync for EventSet

impl Unpin for EventSet

impl UnwindSafe for EventSet

impl RefUnwindSafe for EventSet

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]