pub trait ReadPart {
    fn read_next<'a>(&self, context: ReadContext<'a>) -> ReadAction { ... }
    fn n_stride(&self) -> usize { ... }
}
Expand description

Instruct the reader how to read a part of text by inspecting ReadContext

Provided Methods§

How to read next lines?

Read n lines at each time.

Implementors§