pub trait InputTake {
    fn take(&self, count: usize) -> Self;
fn take_split(&self, count: usize) -> (Self, Self); }
Expand description

Reexport nom traits required for parsing Abstracts slicing operations

Required methods

Returns a slice of count bytes. panics if count > length

Split the stream at the count byte offset. panics if count > length

Implementations on Foreign Types

Implementors