SimpleSpanned

Type Alias SimpleSpanned 

Source
pub type SimpleSpanned<T, U = usize, C = ()> = Spanned<T, SimpleSpan<U, C>>;
Expand description

Spanned for SimpleSpan.

Aliased Type§

pub struct SimpleSpanned<T, U = usize, C = ()> {
    pub inner: T,
    pub span: SimpleSpan<U, C>,
}

Fields§

§inner: T

The inner value.

§span: SimpleSpan<U, C>

The span covered by the inner value in the source input.