[][src]Struct stakker::FixedTimerKey

pub struct FixedTimerKey { /* fields omitted */ }

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

impl Clone for FixedTimerKey[src]

impl Copy for FixedTimerKey[src]

impl Debug for FixedTimerKey[src]

impl Default for FixedTimerKey[src]

impl Eq for FixedTimerKey[src]

impl PartialEq<FixedTimerKey> for FixedTimerKey[src]

impl StructuralEq for FixedTimerKey[src]

impl StructuralPartialEq for FixedTimerKey[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.