pub trait Spanned {
    fn span(&self) -> Span;
}
This is supported on crate feature spanned only.
Expand description

Trait for any item that has a retrievable source span

Required methods

Get the source span of this item

Implementors