Trait nu_source::IntoSpanned[][src]

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

Associated Types

Loading content...

Required methods

fn into_spanned(self, span: impl Into<Span>) -> Self::Output[src]

Loading content...

Implementors

impl<T: HasFallibleSpan> IntoSpanned for T[src]

type Output = T

Loading content...