Enum codeviz_js::Name [] [src]

pub enum Name {
    Imported(ImportedName),
    BuiltIn(BuiltInName),
    Local(LocalName),
}

Variants

Methods

impl Name
[src]

Trait Implementations

impl Imports for Name
[src]

impl Debug for Name
[src]

Formats the value using the given formatter.

impl Clone for Name
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, T> From<&'a T> for Name where
    T: Into<Name> + Clone
[src]

Performs the conversion.

impl From<ImportedName> for Name
[src]

Performs the conversion.

impl From<BuiltInName> for Name
[src]

Performs the conversion.

impl From<LocalName> for Name
[src]

Performs the conversion.