Type Alias SpannedOption

Source
pub(super) type SpannedOption<T> = Option<(T, Span)>;
Expand description

An Option<T> that keeps track of the span that caused it to be set; used with SetOnce.

Aliased Type§

enum SpannedOption<T> {
    None,
    Some((T, Span)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some((T, Span))

Some value of type T.