Skip to main content

IntoOptionSpan

Trait IntoOptionSpan 

Source
pub trait IntoOptionSpan<'db> {
    // Required method
    fn into_opt_span(self) -> Option<Span<'db>>;
}
Expand description

Either Span or Option<Span>.

Required Methods§

Source

fn into_opt_span(self) -> Option<Span<'db>>

Implementations on Foreign Types§

Source§

impl<'db> IntoOptionSpan<'db> for Option<Span<'db>>

Implementors§

Source§

impl<'db> IntoOptionSpan<'db> for Span<'db>