Skip to main content

Ready

Struct Ready 

Source
pub struct Ready(/* private fields */);
Available on crate feature net, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Expand description

Describes the readiness state of an I/O resources.

Ready tracks which operation an I/O resource is ready to perform.

Implementations§

Source§

impl Ready

Source

pub const EMPTY: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns the empty Ready set.

Source

pub const READABLE: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns a Ready representing readable readiness.

Source

pub const WRITABLE: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns a Ready representing writable readiness.

Source

pub const READ_CLOSED: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns a Ready representing read closed readiness.

Source

pub const WRITE_CLOSED: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns a Ready representing write closed readiness.

Source

pub const PRIORITY: Ready

Available on Linux or Android only.

Returns a Ready representing priority readiness.

Source

pub const ERROR: Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns a Ready representing error readiness.

Source

pub const ALL: Ready

Available on (crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux) and (Linux or Android) only.

Returns a Ready representing readiness for all operations.

Source

pub fn is_empty(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if Ready is the empty set.

§Examples
use tokio::io::Ready;

assert!(Ready::EMPTY.is_empty());
assert!(!Ready::READABLE.is_empty());
Source

pub fn is_readable(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if the value includes readable.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_readable());
assert!(Ready::READABLE.is_readable());
assert!(Ready::READ_CLOSED.is_readable());
assert!(!Ready::WRITABLE.is_readable());
Source

pub fn is_writable(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if the value includes writable readiness.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_writable());
assert!(!Ready::READABLE.is_writable());
assert!(Ready::WRITABLE.is_writable());
assert!(Ready::WRITE_CLOSED.is_writable());
Source

pub fn is_read_closed(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if the value includes read-closed readiness.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_read_closed());
assert!(!Ready::READABLE.is_read_closed());
assert!(Ready::READ_CLOSED.is_read_closed());
Source

pub fn is_write_closed(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if the value includes write-closed readiness.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_write_closed());
assert!(!Ready::WRITABLE.is_write_closed());
assert!(Ready::WRITE_CLOSED.is_write_closed());
Source

pub fn is_priority(self) -> bool

Available on Linux or Android only.

Returns true if the value includes priority readiness.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_priority());
assert!(!Ready::WRITABLE.is_priority());
assert!(Ready::PRIORITY.is_priority());
Source

pub fn is_error(self) -> bool

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

Returns true if the value includes error readiness.

§Examples
use tokio::io::Ready;

assert!(!Ready::EMPTY.is_error());
assert!(!Ready::WRITABLE.is_error());
assert!(Ready::ERROR.is_error());

Trait Implementations§

Source§

impl BitAnd for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

type Output = Ready

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitOr for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

type Output = Ready

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOrAssign for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

fn bitor_assign(&mut self, other: Ready)

Performs the |= operation. Read more
Source§

impl Clone for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

fn clone(&self) -> Ready

Returns a duplicate 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

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

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

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

impl Ord for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
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,

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

impl PartialEq for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
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

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

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

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Sub for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

type Output = Ready

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Copy for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

impl Eq for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.
Source§

impl StructuralPartialEq for Ready

Available on crate feature net, or Unix and crate feature process, or Unix and crate feature signal, or tokio_unstable and crate feature io-uring and crate feature rt and crate feature fs and Linux only.

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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,

Source§

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>,

Source§

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>,

Source§

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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more