[−][src]Struct sunrise_kernel::utils::loop_future::LoopFn
A future implementing a tail-recursive loop.
Created by the loop_fn
function.
Fields
future: A
Future representing the current loop iteration.
func: F
Function called on every new iteration to generate that iteration's future
Trait Implementations
impl<A, F> Debug for LoopFn<A, F> where
A: Debug,
F: Debug,
[src][+]
A: Debug,
F: Debug,
impl<S, T, A, F> Future for LoopFn<A, F> where
A: Future<Output = Loop<T, S>> + Unpin,
F: FnMut(S) -> A,
LoopFn<A, F>: Unpin,
[src][+]
A: Future<Output = Loop<T, S>> + Unpin,
F: FnMut(S) -> A,
LoopFn<A, F>: Unpin,
Auto Trait Implementations
impl<A, F> RefUnwindSafe for LoopFn<A, F> where
A: RefUnwindSafe,
F: RefUnwindSafe,
A: RefUnwindSafe,
F: RefUnwindSafe,
impl<A, F> Send for LoopFn<A, F> where
A: Send,
F: Send,
A: Send,
F: Send,
impl<A, F> Sync for LoopFn<A, F> where
A: Sync,
F: Sync,
A: Sync,
F: Sync,
impl<A, F> Unpin for LoopFn<A, F> where
A: Unpin,
F: Unpin,
A: Unpin,
F: Unpin,
impl<A, F> UnwindSafe for LoopFn<A, F> where
A: UnwindSafe,
F: UnwindSafe,
A: UnwindSafe,
F: UnwindSafe,
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,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<F> IntoFuture for F where
F: Future,
[src][+]
F: Future,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,