pub enum PollResult<Ordering, Data> {
    Item {
        data: Data,
        ordering: Ordering,
    },
    NoneBefore,
    Terminated,
}
Expand description

The result of a OrderedStream::poll_next_before operation.

Variants§

§

Item

Fields

§data: Data
§ordering: Ordering

An item with a corresponding ordering token.

§

NoneBefore

This stream will not return any items prior to the given point.

§

Terminated

This stream is terminated and should not be polled again.

Implementations§

source§

impl<D, T> PollResult<T, D>

source

pub fn into_data(self) -> Option<D>

Extract the data from the result.

source

pub fn into_tuple(self) -> Option<(T, D)>

Extract the item from the result.

source

pub fn map_data<R>(self, f: impl FnOnce(D) -> R) -> PollResult<T, R>

Apply a closure to the data.

source§

impl<T, D, E> PollResult<T, Result<D, E>>

source

pub fn transpose_result(self) -> Result<PollResult<T, D>, E>

Extract the error of a Result item.

source

pub fn transpose_result_item(self) -> Result<PollResult<T, D>, (T, E)>

Extract the error and ordering from a Result item.

Trait Implementations§

source§

impl<Ordering: Clone, Data: Clone> Clone for PollResult<Ordering, Data>

source§

fn clone(&self) -> PollResult<Ordering, Data>

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<Ordering: Debug, Data: Debug> Debug for PollResult<Ordering, Data>

source§

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

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

impl<Ordering: Hash, Data: Hash> Hash for PollResult<Ordering, Data>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<Ordering: Ord, Data: Ord> Ord for PollResult<Ordering, Data>

source§

fn cmp(&self, other: &PollResult<Ordering, Data>) -> Ordering

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

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

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

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

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

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

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

impl<Ordering: PartialEq, Data: PartialEq> PartialEq<PollResult<Ordering, Data>> for PollResult<Ordering, Data>

source§

fn eq(&self, other: &PollResult<Ordering, Data>) -> 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<Ordering: PartialOrd, Data: PartialOrd> PartialOrd<PollResult<Ordering, Data>> for PollResult<Ordering, Data>

source§

fn partial_cmp(&self, other: &PollResult<Ordering, Data>) -> 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<Ordering: Copy, Data: Copy> Copy for PollResult<Ordering, Data>

source§

impl<Ordering: Eq, Data: Eq> Eq for PollResult<Ordering, Data>

source§

impl<Ordering, Data> StructuralEq for PollResult<Ordering, Data>

source§

impl<Ordering, Data> StructuralPartialEq for PollResult<Ordering, Data>

Auto Trait Implementations§

§

impl<Ordering, Data> RefUnwindSafe for PollResult<Ordering, Data>where Data: RefUnwindSafe, Ordering: RefUnwindSafe,

§

impl<Ordering, Data> Send for PollResult<Ordering, Data>where Data: Send, Ordering: Send,

§

impl<Ordering, Data> Sync for PollResult<Ordering, Data>where Data: Sync, Ordering: Sync,

§

impl<Ordering, Data> Unpin for PollResult<Ordering, Data>where Data: Unpin, Ordering: Unpin,

§

impl<Ordering, Data> UnwindSafe for PollResult<Ordering, Data>where Data: UnwindSafe, Ordering: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.