pub struct TimeEventAccumulator { /* private fields */ }
Expand description
Provides a means of accumulating and draining time event handlers.
Implementations§
Source§impl TimeEventAccumulator
impl TimeEventAccumulator
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Creates a new TimeEventAccumulator
instance.
Sourcepub fn advance_clock(
&mut self,
clock: &mut TestClock,
to_time_ns: UnixNanos,
set_time: bool,
)
pub fn advance_clock( &mut self, clock: &mut TestClock, to_time_ns: UnixNanos, set_time: bool, )
Advance the given clock to the to_time_ns
.
Trait Implementations§
Source§impl Default for TimeEventAccumulator
impl Default for TimeEventAccumulator
Source§fn default() -> Self
fn default() -> Self
Creates a new default TimeEventAccumulator
instance.
Auto Trait Implementations§
impl Freeze for TimeEventAccumulator
impl !RefUnwindSafe for TimeEventAccumulator
impl Send for TimeEventAccumulator
impl Sync for TimeEventAccumulator
impl Unpin for TimeEventAccumulator
impl !UnwindSafe for TimeEventAccumulator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more