[][src]Struct juggle::IdNum

pub struct IdNum(_);

Represents identifier of task registered by WheelHandle.

Identifiers are only valid when distinguishing tasks registered inside the same Wheel. Two different wheels can have tasks with the same identifiers.

Trait Implementations

impl Clone for IdNum[src]

impl Copy for IdNum[src]

impl Debug for IdNum[src]

impl Eq for IdNum[src]

impl Hash for IdNum[src]

impl Ord for IdNum[src]

impl PartialEq<IdNum> for IdNum[src]

impl PartialOrd<IdNum> for IdNum[src]

impl StructuralEq for IdNum[src]

impl StructuralPartialEq for IdNum[src]

Auto Trait Implementations

impl RefUnwindSafe for IdNum

impl Send for IdNum

impl Sync for IdNum

impl Unpin for IdNum

impl UnwindSafe for IdNum

Blanket Implementations

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

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

impl<T> BorrowMut<T> for T where
    T: ?Sized
[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.