pub struct Ready(_);
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 mio::Ready;
let ready = Ready::readable() | Ready::writable();
assert!(ready.is_readable());
assert!(ready.is_writable());
Implementations
sourceimpl Ready
impl Ready
sourcepub fn is_readable(&self) -> bool
pub fn is_readable(&self) -> bool
sourcepub fn is_writable(&self) -> bool
pub fn is_writable(&self) -> bool
sourcepub fn insert<T: Into<Self>>(&mut self, other: T)
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 mio::Ready;
let mut readiness = Ready::empty();
readiness.insert(Ready::readable());
assert!(readiness.is_readable());
sourcepub fn remove<T: Into<Self>>(&mut self, other: T)
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 mio::Ready;
let mut readiness = Ready::readable();
readiness.remove(Ready::readable());
assert!(!readiness.is_readable());
sourcepub fn contains<T: Into<Self>>(&self, other: T) -> bool
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 mio::Ready;
let readiness = Ready::readable();
assert!(readiness.contains(Ready::readable()));
assert!(!readiness.contains(Ready::writable()));
use mio::Ready;
let readiness = Ready::readable() | Ready::writable();
assert!(readiness.contains(Ready::readable()));
assert!(readiness.contains(Ready::writable()));
use mio::Ready;
let readiness = Ready::readable() | Ready::writable();
assert!(!Ready::readable().contains(readiness));
assert!(readiness.contains(readiness));
sourcepub fn from_usize(val: usize) -> Ready
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 mio::Ready;
let ready = Ready::readable();
let ready_usize = ready.as_usize();
let ready2 = Ready::from_usize(ready_usize);
assert_eq!(ready, ready2);
sourcepub fn as_usize(&self) -> usize
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 mio::Ready;
let ready = Ready::readable();
let ready_usize = ready.as_usize();
let ready2 = Ready::from_usize(ready_usize);
assert_eq!(ready, ready2);
Trait Implementations
sourceimpl<T: Into<Ready>> BitAndAssign<T> for Ready
impl<T: Into<Ready>> BitAndAssign<T> for Ready
sourcefn bitand_assign(&mut self, other: T)
fn bitand_assign(&mut self, other: T)
Performs the &=
operation. Read more
sourceimpl<T: Into<Ready>> BitOrAssign<T> for Ready
impl<T: Into<Ready>> BitOrAssign<T> for Ready
sourcefn bitor_assign(&mut self, other: T)
fn bitor_assign(&mut self, other: T)
Performs the |=
operation. Read more
sourceimpl<T: Into<Ready>> BitXorAssign<T> for Ready
impl<T: Into<Ready>> BitXorAssign<T> for Ready
sourcefn bitxor_assign(&mut self, other: T)
fn bitxor_assign(&mut self, other: T)
Performs the ^=
operation. Read more
sourceimpl Ord for Ready
impl Ord for Ready
sourceimpl PartialOrd<Ready> for Ready
impl PartialOrd<Ready> for Ready
sourcefn partial_cmp(&self, other: &Ready) -> Option<Ordering>
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 · sourcefn lt(&self, other: &Rhs) -> bool
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 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl<T: Into<Ready>> SubAssign<T> for Ready
impl<T: Into<Ready>> SubAssign<T> for Ready
sourcefn sub_assign(&mut self, other: T)
fn sub_assign(&mut self, other: T)
Performs the -=
operation. Read more
impl Copy for Ready
impl Eq for Ready
impl StructuralEq for Ready
impl StructuralPartialEq for Ready
Auto Trait Implementations
impl RefUnwindSafe for Ready
impl Send for Ready
impl Sync for Ready
impl Unpin for Ready
impl UnwindSafe for Ready
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more