[−][src]Trait nom::InputTake
Abstracts slicing operations
Required methods
pub fn take(&self, count: usize) -> Self[src]
Returns a slice of count bytes. panics if count > length
pub fn take_split(&self, count: usize) -> (Self, Self)[src]
Split the stream at the count byte offset. panics if count > length
Implementations on Foreign Types
impl<'a> InputTake for &'a [u8][src]
pub fn take(&self, count: usize) -> Self[src]
pub fn take_split(&self, count: usize) -> (Self, Self)[src]
impl<'a> InputTake for &'a str[src]
pub fn take(&self, count: usize) -> Self[src]
pub fn take_split(&self, count: usize) -> (Self, Self)[src]
impl<'a, O, T> InputTake for &'a BitSlice<O, T> where
O: BitOrder,
T: 'a + BitStore, [src]
O: BitOrder,
T: 'a + BitStore,