async_retry/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5//
6pub mod error;
7pub mod retry;
8pub mod retry_with_timeout;
9
10pub use error::Error;
11pub use retry::{retry, Retry};
12pub use retry_with_timeout::{retry_with_timeout, retry_with_timeout_for_non_logic_error};