Trait aws_smithy_async::time::TimeSource
source · pub trait TimeSource: Debug + Send + Sync {
// Required method
fn now(&self) -> SystemTime;
}
Expand description
Trait with a now()
function returning the current time
Required Methods§
sourcefn now(&self) -> SystemTime
fn now(&self) -> SystemTime
Returns the current time
Implementations on Foreign Types§
source§impl TimeSource for SystemTime
Available on crate feature test-util
only.
impl TimeSource for SystemTime
Available on crate feature
test-util
only.fn now(&self) -> SystemTime
Implementors§
impl TimeSource for ManualTimeSource
Available on crate feature
test-util
only.impl TimeSource for TickAdvanceTime
Available on crate feature
test-util
only.