[−][src]Struct mio::Interest
Interest used in registering.
Interest are used in registering event::Source
s with Poll
, they
indicate what readiness should be monitored for. For example if a socket is
registered with readable interests and the socket becomes writable, no
event will be returned from a call to poll
.
Implementations
impl Interest
[src]
pub const READABLE: Interest
[src]
Returns a Interest
set representing readable interests.
pub const WRITABLE: Interest
[src]
Returns a Interest
set representing writable interests.
pub const fn add(self, other: Interest) -> Interest
[src]
Add together two Interest
.
This does the same thing as the BitOr
implementation, but is a
constant function.
use mio::Interest; const INTERESTS: Interest = Interest::READABLE.add(Interest::WRITABLE);
pub fn remove(self, other: Interest) -> Option<Interest>
[src]
Removes other
Interest
from self
.
Returns None
if the set would be empty after removing other
.
use mio::Interest; const RW_INTERESTS: Interest = Interest::READABLE.add(Interest::WRITABLE); // As long a one interest remain this will return `Some`. let w_interest = RW_INTERESTS.remove(Interest::READABLE).unwrap(); assert!(!w_interest.is_readable()); assert!(w_interest.is_writable()); // Removing all interests from the set will return `None`. assert_eq!(w_interest.remove(Interest::WRITABLE), None); // Its also possible to remove multiple interests at once. assert_eq!(RW_INTERESTS.remove(RW_INTERESTS), None);
pub const fn is_readable(self) -> bool
[src]
Returns true if the value includes readable readiness.
pub const fn is_writable(self) -> bool
[src]
Returns true if the value includes writable readiness.
pub const fn is_aio(self) -> bool
[src]
Returns true if Interest
contains AIO readiness
pub const fn is_lio(self) -> bool
[src]
Returns true if Interest
contains LIO readiness
Trait Implementations
impl BitOr<Interest> for Interest
[src]
type Output = Self
The resulting type after applying the |
operator.
fn bitor(self, other: Self) -> Self
[src]
impl BitOrAssign<Interest> for Interest
[src]
fn bitor_assign(&mut self, other: Self)
[src]
impl Clone for Interest
[src]
impl Copy for Interest
[src]
impl Debug for Interest
[src]
impl Eq for Interest
[src]
impl Ord for Interest
[src]
fn cmp(&self, other: &Interest) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<Interest> for Interest
[src]
impl PartialOrd<Interest> for Interest
[src]
fn partial_cmp(&self, other: &Interest) -> Option<Ordering>
[src]
fn lt(&self, other: &Interest) -> bool
[src]
fn le(&self, other: &Interest) -> bool
[src]
fn gt(&self, other: &Interest) -> bool
[src]
fn ge(&self, other: &Interest) -> bool
[src]
impl StructuralEq for Interest
[src]
impl StructuralPartialEq for Interest
[src]
Auto Trait Implementations
impl RefUnwindSafe for Interest
impl Send for Interest
impl Sync for Interest
impl Unpin for Interest
impl UnwindSafe for Interest
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,