pub trait InputTake: Sized {
fn take(&self, count: usize) -> Self;
fn take_split(&self, count: usize) -> (Self, Self);
}
Expand description
Abstracts slicing operations
Required methods
fn take_split(&self, count: usize) -> (Self, Self)
fn take_split(&self, count: usize) -> (Self, Self)
Split the stream at the count
byte offset. panics if count > length