Skip to main content

Ident

Type Alias Ident 

Source
pub type Ident = Option<Box<str>>;
Expand description

Owned equivalent of Ident. None represents the error state (no identifier was parsed).

Aliased Type§

pub enum Ident {
    None,
    Some(Box<str>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<str>)

Some value of type T.