pub trait IntoSpanned {
    type Output: HasFallibleSpan;
    fn into_spanned(self, span: impl Into<Span>) -> Self::Output;
}

Associated Types

Required methods

Implementors