IntoStreamParser

Trait IntoStreamParser 

Source
pub trait IntoStreamParser<'r> {
    // Required method
    fn into_parser<Parser: LogParser>(self) -> StreamParser<'r, Parser>;
}

Required Methods§

Source

fn into_parser<Parser: LogParser>(self) -> StreamParser<'r, Parser>

Creates a new parser from a buffered reader.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'r, R: BufRead + 'r> IntoStreamParser<'r> for R