[][src]Struct queen_io::PollOpt

pub struct PollOpt(_);

Methods

impl PollOpt[src]

pub fn empty() -> PollOpt[src]

pub fn edge() -> PollOpt[src]

pub fn level() -> PollOpt[src]

pub fn oneshot() -> PollOpt[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: PollOpt) -> bool[src]

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

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

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

Trait Implementations

impl Clone for PollOpt[src]

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

Performs copy-assignment from source. Read more

impl Ord for PollOpt[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl From<usize> for PollOpt[src]

impl PartialOrd<PollOpt> for PollOpt[src]

impl PartialEq<PollOpt> for PollOpt[src]

impl Copy for PollOpt[src]

impl Eq for PollOpt[src]

impl Debug for PollOpt[src]

impl Sub<PollOpt> for PollOpt[src]

type Output = PollOpt

The resulting type after applying the - operator.

impl Not for PollOpt[src]

type Output = PollOpt

The resulting type after applying the ! operator.

impl BitAnd<PollOpt> for PollOpt[src]

type Output = PollOpt

The resulting type after applying the & operator.

impl BitOr<PollOpt> for PollOpt[src]

type Output = PollOpt

The resulting type after applying the | operator.

impl BitXor<PollOpt> for PollOpt[src]

type Output = PollOpt

The resulting type after applying the ^ operator.

Auto Trait Implementations

impl Sync for PollOpt

impl Send for PollOpt

impl Unpin for PollOpt

impl RefUnwindSafe for PollOpt

impl UnwindSafe for PollOpt

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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