[−][src]Struct sunrise_libutils::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: Debug, F: Debug> Debug for LoopFn<A, F>
[src]
impl<S, T, A, F> Future for LoopFn<A, F> where
F: FnMut(S) -> A,
A: Future<Output = Loop<T, S>> + Unpin,
Self: Unpin,
[src]
F: FnMut(S) -> A,
A: Future<Output = Loop<T, S>> + Unpin,
Self: Unpin,
Auto Trait Implementations
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,
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,
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<F> IntoFuture for F where
F: Future,
[src]
F: Future,
type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
fn into_future(self) -> <F as IntoFuture>::Future
[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.
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>,