Enum moore_vhdl::score::ResolvableName [] [src]

pub enum ResolvableName {
    Ident(Name),
    Bit(char),
    Operator(Operator),
}

A name that can be resolved in a scope.

Variants

Methods

impl ResolvableName
[src]

[src]

Check whether this name is an identifier.

[src]

Check whether this name is a bit.

[src]

Check whether this name is an operator.

Trait Implementations

impl Copy for ResolvableName
[src]

impl Clone for ResolvableName
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ResolvableName
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ResolvableName
[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 Eq for ResolvableName
[src]

impl Hash for ResolvableName
[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 Display for ResolvableName
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Name> for ResolvableName
[src]

[src]

Performs the conversion.

impl From<char> for ResolvableName
[src]

[src]

Performs the conversion.