Trait text_parsing::source::IntoSource

source ·
pub trait IntoSource {
    type Source: Source;

    // Required method
    fn into_source(self) -> Self::Source;
}

Required Associated Types§

Required Methods§

source

fn into_source(self) -> Self::Source

Implementations on Foreign Types§

source§

impl IntoSource for char

source§

impl<'s> IntoSource for &'s str

§

type Source = StrSource<'s>

source§

fn into_source(self) -> Self::Source

source§

impl<'s> IntoSource for &'s String

§

type Source = StrSource<'s>

source§

fn into_source(self) -> Self::Source

Implementors§