pub trait InputTake: Sized {
// Required methods
fn take(&self, count: usize) -> Self;
fn take_split(&self, count: usize) -> (Self, Self);
}
Expand description
Abstracts slicing operations
Required Methods§
sourcefn 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
Object Safety§
This trait is not object safe.