1 2 3 4 5 6 7 8
#[cfg(target_family = "wasm")] #[path = "delay/host.rs"] mod implementation; #[cfg(not(target_family = "wasm"))] #[path = "delay/native.rs"] mod implementation; pub(crate) use implementation::{RetryDelay, RetryFuture};