Struct rotor::EventSet []

pub struct EventSet(_);

Methods

impl EventSet

fn none() -> EventSet

fn readable() -> EventSet

fn writable() -> EventSet

fn error() -> EventSet

fn hup() -> EventSet

fn all() -> EventSet

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: EventSet)

fn remove(&mut self, other: EventSet)

fn bits(&self) -> usize

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

Trait Implementations

impl Ord for EventSet

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

This method returns an Ordering between self and other. Read more

impl PartialOrd<EventSet> for EventSet

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

This method returns an ordering between self and other values if one exists. Read more

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

This method tests less than (for self and other) and is used by the < operator. Read more

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

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

This method tests greater than (for self and other) and is used by the > operator. Read more

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for EventSet

fn clone(&self) -> EventSet

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Eq for EventSet

impl PartialEq<EventSet> for EventSet

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Copy for EventSet

impl BitOr<EventSet> for EventSet

type Output = EventSet

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

impl BitXor<EventSet> for EventSet

type Output = EventSet

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

impl BitAnd<EventSet> for EventSet

type Output = EventSet

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

impl Sub<EventSet> for EventSet

type Output = EventSet

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

impl Not for EventSet

type Output = EventSet

fn not(self) -> EventSet

impl Debug for EventSet

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

Formats the value using the given formatter.