Trait trust_dns_proto::Time
source · pub trait Time {
// Required methods
fn delay_for<'async_trait>(
duration: Duration,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>;
fn timeout<'async_trait, F>(
duration: Duration,
future: F,
) -> Pin<Box<dyn Future<Output = Result<F::Output, Error>> + Send + 'async_trait>>
where F: 'async_trait + 'static + Future + Send;
}
Expand description
Generic Time for Delay and Timeout.
Required Methods§
Object Safety§
This trait is not object safe.