[][src]Struct rusttyc::types::ReifiedTypeTable

pub struct ReifiedTypeTable<Concrete> { /* fields omitted */ }

An implementation of TypeTable for concrete types. See AbstractTypeTable for an implementation specializing on abstract types.

Can automatically be generated from a HashMap<TcKey, Concrete>.

Trait Implementations

impl<Concrete: Clone> Clone for ReifiedTypeTable<Concrete>[src]

impl<Concrete: Debug> Debug for ReifiedTypeTable<Concrete>[src]

impl<Concrete> From<HashMap<TcKey, Concrete, RandomState>> for ReifiedTypeTable<Concrete>[src]

impl<Concrete> Index<TcKey> for ReifiedTypeTable<Concrete>[src]

type Output = Concrete

The returned type after indexing.

impl<Concrete> TypeTable for ReifiedTypeTable<Concrete>[src]

type Type = Concrete

The (rust-) type of the (external-) type stored in this type table.

Auto Trait Implementations

impl<Concrete> RefUnwindSafe for ReifiedTypeTable<Concrete> where
    Concrete: RefUnwindSafe

impl<Concrete> Send for ReifiedTypeTable<Concrete> where
    Concrete: Send

impl<Concrete> Sync for ReifiedTypeTable<Concrete> where
    Concrete: Sync

impl<Concrete> Unpin for ReifiedTypeTable<Concrete> where
    Concrete: Unpin

impl<Concrete> UnwindSafe for ReifiedTypeTable<Concrete> where
    Concrete: UnwindSafe

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.