pub trait Delay<I: Iterator, F: FnOnce() -> I> {
// Required method
fn delay(self) -> Delayed<I, F> ⓘ;
}Expand description
Lets you call fibs.delay() instead of delay(fibs), if such is your wont.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".