[][src]Struct pui::typeid_tl::Type

#[repr(transparent)]pub struct Type<T>(_, _);
This is supported on crate feature std only.

A type thread local based identifier

This handle is guaranteed to be zero-sized and 1 byte aligned

see module docs for details

Implementations

impl<T> Type<T>[src]

pub const unsafe fn new_unchecked(value: T, handle: TypeHandle<T>) -> Self[src]

Create a new Type<T> handle

Panic

If the given type is not 0-sized and 1-byte aligned, then this function panics

Safety

There must be no other instances of Type<T> in the current thread

pub const fn handle(&self) -> TypeHandle<T>[src]

get a handle with the same type parameter

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 Handle = TypeHandle<T>

A handle which can be used to mark other types

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> where
    T: RefUnwindSafe
[src]

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

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

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

impl<T> UnwindSafe for Type<T> where
    T: UnwindSafe
[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.