Struct mio::Ready
[−]
[src]
pub struct Ready(_);
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());
Methods
impl Ready
[src]
fn empty() -> Ready
Returns the empty Ready
set.
See Poll
for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::empty(); assert!(!ready.is_readable());
fn readable() -> Ready
Returns a Ready
representing readable readiness.
See Poll
for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::readable(); assert!(ready.is_readable());
fn writable() -> Ready
Returns a Ready
representing writable readiness.
See Poll
for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::writable(); assert!(ready.is_writable());
fn is_empty(&self) -> bool
Returns true if Ready
is the empty set
See [Poll
] for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::empty(); assert!(ready.is_empty());
fn is_readable(&self) -> bool
Returns true if the value includes readable readiness
See Poll
for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::readable(); assert!(ready.is_readable());
fn is_writable(&self) -> bool
Returns true if the value includes writable readiness
See Poll
for more documentation on polling.
Examples
use mio::Ready; let ready = Ready::writable(); assert!(ready.is_writable());
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());
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());
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)); assert!((readiness | Ready::hup()).contains(readiness));
Trait Implementations
impl Copy for Ready
[src]
impl PartialEq for Ready
[src]
fn eq(&self, __arg_0: &Ready) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Ready) -> bool
This method tests for !=
.
impl Eq for Ready
[src]
impl Clone for Ready
[src]
fn clone(&self) -> Ready
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 PartialOrd for Ready
[src]
fn partial_cmp(&self, __arg_0: &Ready) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &Ready) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &Ready) -> 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: &Ready) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &Ready) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Ready
[src]
fn cmp(&self, __arg_0: &Ready) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
ord_max_min
)Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
ord_max_min
)Compares and returns the minimum of two values. Read more
impl<T: Into<Ready>> BitOr<T> for Ready
[src]
type Output = Ready
The resulting type after applying the |
operator
fn bitor(self, other: T) -> Ready
The method for the |
operator
impl<T: Into<Ready>> BitOrAssign<T> for Ready
[src]
fn bitor_assign(&mut self, other: T)
The method for the |=
operator
impl<T: Into<Ready>> BitXor<T> for Ready
[src]
type Output = Ready
The resulting type after applying the ^
operator
fn bitxor(self, other: T) -> Ready
The method for the ^
operator
impl<T: Into<Ready>> BitXorAssign<T> for Ready
[src]
fn bitxor_assign(&mut self, other: T)
The method for the ^=
operator
impl<T: Into<Ready>> BitAnd<T> for Ready
[src]
type Output = Ready
The resulting type after applying the &
operator
fn bitand(self, other: T) -> Ready
The method for the &
operator
impl<T: Into<Ready>> BitAndAssign<T> for Ready
[src]
fn bitand_assign(&mut self, other: T)
The method for the &=
operator
impl<T: Into<Ready>> Sub<T> for Ready
[src]
type Output = Ready
The resulting type after applying the -
operator
fn sub(self, other: T) -> Ready
The method for the -
operator
impl<T: Into<Ready>> SubAssign<T> for Ready
[src]
fn sub_assign(&mut self, other: T)
The method for the -=
operator
impl Not for Ready
[src]
type Output = Ready
The resulting type after applying the !
operator
fn not(self) -> Ready
The method for the unary !
operator