Struct gluon_base::types::Alias [] [src]

pub struct Alias<Id, T> { /* fields omitted */ }

An alias is wrapper around Type::Alias, allowing it to be cheaply converted to a type and dereferenced to AliasData

Methods

impl<Id, T> Alias<Id, T> where T: From<Type<Id, T>>
[src]

impl<Id> Alias<Id, ArcType<Id>> where Id: Clone
[src]

Trait Implementations

impl<Id: Clone, T: Clone> Clone for Alias<Id, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Id: Debug, T: Debug> Debug for Alias<Id, T>
[src]

Formats the value using the given formatter.

impl<Id: Eq, T: Eq> Eq for Alias<Id, T>
[src]

impl<Id: PartialEq, T: PartialEq> PartialEq for Alias<Id, T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Id: Hash, T: Hash> Hash for Alias<Id, T>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl<Id, T> Deref for Alias<Id, T> where T: Deref<Target=Type<Id, T>>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<Id, T> From<AliasData<Id, T>> for Alias<Id, T> where T: From<Type<Id, T>>
[src]

Performs the conversion.

impl<Id, T> AsRef<T> for Alias<Id, T>
[src]

Performs the conversion.