pub trait Spanned {
    fn span(&self) -> Span;
    fn span_ref_mut(&mut self) -> &mut Span;
}

Required Methods

Implementors