Struct corcovado::Ready

source ·
pub struct Ready(/* private fields */);
Expand description

A set of readiness event kinds

Ready is a set of operation descriptors indicating which kind of an operation is ready to be performed. For example, Ready::readable() indicates that the associated Evented handle is ready to perform a read operation.

This struct only represents portable event kinds. Since only readable and writable events are guaranteed to be raised on all systems, those are the only ones available via the Ready struct. There are also platform specific extensions to Ready, i.e. UnixReady, which provide additional readiness event kinds only available on unix platforms.

Ready values can be combined together using the various bitwise operators.

For high level documentation on polling and readiness, see Poll.

§Examples

use corcovado::Ready;

let ready = Ready::readable() | Ready::writable();

assert!(ready.is_readable());
assert!(ready.is_writable());

Implementations§

source§

impl Ready

source

pub fn empty() -> Ready

Returns the empty Ready set.

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::empty();

assert!(!ready.is_readable());
source

pub fn none() -> Ready

source

pub fn readable() -> Ready

Returns a Ready representing readable readiness.

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::readable();

assert!(ready.is_readable());
source

pub fn writable() -> Ready

Returns a Ready representing writable readiness.

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::writable();

assert!(ready.is_writable());
source

pub fn error() -> Ready

source

pub fn hup() -> Ready

source

pub fn all() -> Ready

Returns a Ready representing readiness for all operations.

This includes platform specific operations as well (hup, aio, error, lio, pri).

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::all();

assert!(ready.is_readable());
assert!(ready.is_writable());
source

pub fn is_empty(&self) -> bool

Returns true if Ready is the empty set

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::empty();
assert!(ready.is_empty());
source

pub fn is_none(&self) -> bool

source

pub fn is_readable(&self) -> bool

Returns true if the value includes readable readiness

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::readable();

assert!(ready.is_readable());
source

pub fn is_writable(&self) -> bool

Returns true if the value includes writable readiness

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let ready = Ready::writable();

assert!(ready.is_writable());
source

pub fn is_error(&self) -> bool

source

pub fn is_hup(&self) -> bool

source

pub fn insert<T: Into<Self>>(&mut self, other: T)

Adds all readiness represented by other into self.

This is equivalent to *self = *self | other.

§Examples
use corcovado::Ready;

let mut readiness = Ready::empty();
readiness.insert(Ready::readable());

assert!(readiness.is_readable());
source

pub fn remove<T: Into<Self>>(&mut self, other: T)

Removes all options represented by other from self.

This is equivalent to *self = *self & !other.

§Examples
use corcovado::Ready;

let mut readiness = Ready::readable();
readiness.remove(Ready::readable());

assert!(!readiness.is_readable());
source

pub fn bits(&self) -> usize

source

pub fn contains<T: Into<Self>>(&self, other: T) -> bool

Returns true if self is a superset of other.

other may represent more than one readiness operations, in which case the function only returns true if self contains all readiness specified in other.

See Poll for more documentation on polling.

§Examples
use corcovado::Ready;

let readiness = Ready::readable();

assert!(readiness.contains(Ready::readable()));
assert!(!readiness.contains(Ready::writable()));
use corcovado::Ready;

let readiness = Ready::readable() | Ready::writable();

assert!(readiness.contains(Ready::readable()));
assert!(readiness.contains(Ready::writable()));
use corcovado::Ready;

let readiness = Ready::readable() | Ready::writable();

assert!(!Ready::readable().contains(readiness));
assert!(readiness.contains(readiness));
source

pub fn from_usize(val: usize) -> Ready

Create a Ready instance using the given usize representation.

The usize representation must have been obtained from a call to Ready::as_usize.

The usize representation must be treated as opaque. There is no guaranteed correlation between the returned value and platform defined constants. Also, there is no guarantee that the usize representation will remain constant across patch releases of Mio.

This function is mainly provided to allow the caller to loa a readiness value from an AtomicUsize.

§Examples
use corcovado::Ready;

let ready = Ready::readable();
let ready_usize = ready.as_usize();
let ready2 = Ready::from_usize(ready_usize);

assert_eq!(ready, ready2);
source

pub fn as_usize(&self) -> usize

Returns a usize representation of the Ready value.

This usize representation must be treated as opaque. There is no guaranteed correlation between the returned value and platform defined constants. Also, there is no guarantee that the usize representation will remain constant across patch releases of Mio.

This function is mainly provided to allow the caller to store a readiness value in an AtomicUsize.

§Examples
use corcovado::Ready;

let ready = Ready::readable();
let ready_usize = ready.as_usize();
let ready2 = Ready::from_usize(ready_usize);

assert_eq!(ready, ready2);

Trait Implementations§

source§

impl<T: Into<Ready>> BitAnd<T> for Ready

§

type Output = Ready

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl<T: Into<Ready>> BitAndAssign<T> for Ready

source§

fn bitand_assign(&mut self, other: T)

Performs the &= operation. Read more
source§

impl<T: Into<Ready>> BitOr<T> for Ready

§

type Output = Ready

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl<T: Into<Ready>> BitOrAssign<T> for Ready

source§

fn bitor_assign(&mut self, other: T)

Performs the |= operation. Read more
source§

impl<T: Into<Ready>> BitXor<T> for Ready

§

type Output = Ready

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl<T: Into<Ready>> BitXorAssign<T> for Ready

source§

fn bitxor_assign(&mut self, other: T)

Performs the ^= operation. Read more
source§

impl Clone for Ready

source§

fn clone(&self) -> Ready

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for Ready

source§

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

Formats the value using the given formatter. Read more
source§

impl From<Ready> for UnixReady

source§

fn from(src: Ready) -> UnixReady

Converts to this type from the input type.
source§

impl From<UnixReady> for Ready

source§

fn from(src: UnixReady) -> Ready

Converts to this type from the input type.
source§

impl Not for Ready

§

type Output = Ready

The resulting type after applying the ! operator.
source§

fn not(self) -> Ready

Performs the unary ! operation. Read more
source§

impl Ord for Ready

source§

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

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Ready

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Ready

source§

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

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

fn lt(&self, other: &Rhs) -> bool

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

fn le(&self, other: &Rhs) -> bool

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

fn gt(&self, other: &Rhs) -> bool

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

fn ge(&self, other: &Rhs) -> bool

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

impl<T: Into<Ready>> Sub<T> for Ready

§

type Output = Ready

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl<T: Into<Ready>> SubAssign<T> for Ready

source§

fn sub_assign(&mut self, other: T)

Performs the -= operation. Read more
source§

impl Copy for Ready

source§

impl Eq for Ready

source§

impl StructuralPartialEq for Ready

Auto Trait Implementations§

§

impl Freeze for Ready

§

impl RefUnwindSafe for Ready

§

impl Send for Ready

§

impl Sync for Ready

§

impl Unpin for Ready

§

impl UnwindSafe for Ready

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.