[][src]Struct tokio_core::reactor::CoreId

pub struct CoreId(_);

An unique ID for a Core

An ID by which different cores may be distinguished. Can be compared and used as an index in a HashMap.

The ID is globally unique and never reused.

Trait Implementations

impl Clone for CoreId[src]

impl Copy for CoreId[src]

impl Debug for CoreId[src]

impl Eq for CoreId[src]

impl Hash for CoreId[src]

impl PartialEq<CoreId> for CoreId[src]

impl StructuralEq for CoreId[src]

impl StructuralPartialEq for CoreId[src]

Auto Trait Implementations

impl RefUnwindSafe for CoreId

impl Send for CoreId

impl Sync for CoreId

impl Unpin for CoreId

impl UnwindSafe for CoreId

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.