[][src]Trait cnf_parser::Input

pub trait Input {
    fn read_byte(&mut self) -> Option<u8>;
}

Types that can be used as input for the CNF parser.

Required methods

fn read_byte(&mut self) -> Option<u8>

Reads a byte from the input if any is remaining.

Loading content...

Implementations on Foreign Types

impl<'a> Input for &'a [u8][src]

Loading content...

Implementors

impl<R> Input for IoReader<R> where
    R: Read
[src]

Loading content...