pub struct FixedTimerKey { /* private fields */ }
Expand description
Timer key for a fixed timer
Returned by Core::timer_add
or Core::after
. It can be
used to delete a timer with Core::timer_del
. It is plain
Copy
data, 8 bytes long. Note that the key should only be used
on this same Stakker instance. If it is used on another then
it might cause a panic.
Trait Implementations§
Source§impl Clone for FixedTimerKey
impl Clone for FixedTimerKey
Source§fn clone(&self) -> FixedTimerKey
fn clone(&self) -> FixedTimerKey
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FixedTimerKey
impl Debug for FixedTimerKey
Source§impl Default for FixedTimerKey
impl Default for FixedTimerKey
Source§fn default() -> FixedTimerKey
fn default() -> FixedTimerKey
Returns the “default value” for a type. Read more
Source§impl PartialEq for FixedTimerKey
impl PartialEq for FixedTimerKey
impl Copy for FixedTimerKey
impl Eq for FixedTimerKey
impl StructuralPartialEq for FixedTimerKey
Auto Trait Implementations§
impl Freeze for FixedTimerKey
impl RefUnwindSafe for FixedTimerKey
impl Send for FixedTimerKey
impl Sync for FixedTimerKey
impl Unpin for FixedTimerKey
impl UnwindSafe for FixedTimerKey
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