[][src]Struct pui_core::ty::Type

pub struct Type<T> { /* fields omitted */ }

A type based Identifier

Implementations

impl<T> Type<T>[src]

pub const unsafe fn new_unchecked() -> Self[src]

Create a new Type<T>

Safety

There should be only one Type created for any given T

pub const fn token(&self) -> TypeToken<T>[src]

Create a new token

Trait Implementations

impl<T> Debug for Type<T>[src]

impl<T> Eq for Type<T>[src]

impl<T> Hash for Type<T>[src]

impl<T> Identifier for Type<T>[src]

type Token = TypeToken<T>

The tokens that this Identifier generates

impl<T> OneShotIdentifier for Type<T>[src]

impl<T> Ord for Type<T>[src]

impl<T> PartialEq<Type<T>> for Type<T>[src]

impl<T> PartialOrd<Type<T>> for Type<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Type<T>[src]

impl<T> Send for Type<T>[src]

impl<T> Sync for Type<T>[src]

impl<T> Unpin for Type<T>[src]

impl<T> UnwindSafe for Type<T>[src]

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, 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.