pub struct At<F: Future, Tail> { /* private fields */ }
Expand description
Represents a typed list of one or more background futures.
Trait Implementations§
Source§impl<F: Ord + Future, Tail: Ord> Ord for At<F, Tail>
impl<F: Ord + Future, Tail: Ord> Ord for At<F, Tail>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<F: PartialOrd + Future, Tail: PartialOrd> PartialOrd for At<F, Tail>where
F::Output: PartialOrd,
impl<F: PartialOrd + Future, Tail: PartialOrd> PartialOrd for At<F, Tail>where
F::Output: PartialOrd,
impl<F: Eq + Future, Tail: Eq> Eq for At<F, Tail>
impl<F: Future + Unpin, T: FutList> FutList for At<F, T>
impl<F: Future, Tail> StructuralPartialEq for At<F, Tail>
Auto Trait Implementations§
impl<F, Tail> Freeze for At<F, Tail>
impl<F, Tail> RefUnwindSafe for At<F, Tail>
impl<F, Tail> Send for At<F, Tail>
impl<F, Tail> Sync for At<F, Tail>
impl<F, Tail> Unpin for At<F, Tail>
impl<F, Tail> UnwindSafe for At<F, Tail>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more