[][src]Struct gluon_base::ast::TypedIdent

pub struct TypedIdent<Id = Symbol, T = ArcType<Id>> {
    pub typ: T,
    pub name: Id,
}

Fields

typ: Tname: Id

Methods

impl<Id> TypedIdent<Id>[src]

pub fn new(name: Id) -> TypedIdent<Id>[src]

impl<Id, T> TypedIdent<Id, T>[src]

pub fn new2(name: Id, typ: T) -> TypedIdent<Id, T>[src]

Trait Implementations

impl<Id: Clone> Typed for TypedIdent<Id>[src]

type Ident = Id

fn env_type_of(&self, env: &dyn TypeEnv<Type = ArcType>) -> ArcType<Self::Ident>[src]

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

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl<Id, T> AsRef<str> for TypedIdent<Id, T> where
    Id: AsRef<str>, 
[src]

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

Auto Trait Implementations

impl<Id, T> Send for TypedIdent<Id, T> where
    Id: Send,
    T: Send

impl<Id, T> Sync for TypedIdent<Id, T> where
    Id: Sync,
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]