pub type SpannedValue<'a, T> = MaybeSpanned<'a, Value<'a, T>>;Expand description
Value together with a span that has produced it.
Aliased Type§
pub struct SpannedValue<'a, T> {
pub extra: Value<'a, T>,
/* private fields */
}Fields§
§extra: Value<'a, T>Extra information that can be embedded by the user.