HasIdent

Trait HasIdent 

Source
pub trait HasIdent {
    type Kind;

    // Required method
    fn id(&self) -> Ident<Self::Kind>;
}

Required Associated Types§

Required Methods§

Source

fn id(&self) -> Ident<Self::Kind>

Implementations on Foreign Types§

Source§

impl<T> HasIdent for &T
where T: HasIdent,

Source§

type Kind = <T as HasIdent>::Kind

Source§

fn id(&self) -> Ident<Self::Kind>

Implementors§