pub fn initial_delay<T: Send + 'static>(
src: Source<T>,
delay: Duration,
) -> Source<T>Expand description
initial_delay(d) — sleep d before forwarding the first element.
Once the first element has been emitted, downstream sees the source
as a normal pass-through.