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 AliasRef

Methods

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

[src]

[src]

[src]

[src]

impl<Id, T> Alias<Id, T> where
    T: From<Type<Id, T>> + Deref<Target = Type<Id, T>> + Clone,
    Id: Clone + PartialEq
[src]

[src]

Returns the actual type of the alias

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

[src]

Methods from Deref<Target = AliasData<Id, T>>

[src]

Returns the type aliased by self with out Type::Ident resolved to their actual Type::Alias representation

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[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]

[src]

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

[src]

This method tests for !=.

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

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.