pub struct RegularTimerId(/* private fields */);Expand description
Timer will fire in its time slice. This can happen before of after the expected time.
Trait Implementations§
Source§impl Clone for RegularTimerId
impl Clone for RegularTimerId
Source§fn clone(&self) -> RegularTimerId
fn clone(&self) -> RegularTimerId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RegularTimerId
impl Debug for RegularTimerId
Source§impl Hash for RegularTimerId
impl Hash for RegularTimerId
Source§impl Ord for RegularTimerId
impl Ord for RegularTimerId
Source§fn cmp(&self, other: &RegularTimerId) -> Ordering
fn cmp(&self, other: &RegularTimerId) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RegularTimerId
impl PartialEq for RegularTimerId
Source§impl PartialOrd for RegularTimerId
impl PartialOrd for RegularTimerId
impl Copy for RegularTimerId
impl Eq for RegularTimerId
impl StructuralPartialEq for RegularTimerId
Auto Trait Implementations§
impl Freeze for RegularTimerId
impl RefUnwindSafe for RegularTimerId
impl Send for RegularTimerId
impl Sync for RegularTimerId
impl Unpin for RegularTimerId
impl UnsafeUnpin for RegularTimerId
impl UnwindSafe for RegularTimerId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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