Trait LineBodyConsumer

Source
pub trait LineBodyConsumer {
    // Provided method
    fn consume<R: Read>(body: R) -> Result<Vec<String>> { ... }
}
Expand description

consume body as lines used by jqdata-derive crate

Provided Methods§

Source

fn consume<R: Read>(body: R) -> Result<Vec<String>>

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§