[][src]Trait gchemol_parser::Partition

pub trait Partition {
    fn read_next(&self, _context: ReadContext) -> bool { ... }
}

Read next line or not

Provided methods

fn read_next(&self, _context: ReadContext) -> bool

Instruct the reader to read in the next line or not.

Always read in next line by default.

Loading content...

Implementors

impl<F> Partition for Preceded<F> where
    F: Fn(&str) -> bool
[src]

impl<F> Partition for Terminated<F> where
    F: Fn(&str) -> bool
[src]

Loading content...