pub trait Spanned {
// Required method
fn span(&self) -> Span;
}Expand description
Local version of Spanned
Works around Spanned being sealed in syn 2.
https://github.com/dtolnay/syn/pull/1524.
(Not needed with syn 1, but would be harmless there.)