Expand description
Cross-platform time module for rate limiting and retry backoff.
- Native: delegates to
std::time::Instantandtokio::time::sleep. - WASM: uses
js_sys::Date::now()for time measurement andsetTimeout(viajs_sys::Promise) for async sleep.