Enum nom::Move 
                   
                       [−]
                   
               [src]
pub enum Move {
    Consume(usize),
    Seek(SeekFrom),
    Await(Needed),
}Variants
Consume(usize)indcates how much data was consumed
Seek(SeekFrom)indicates where in the input the consumer must seek
Await(Needed)indicates more data is needed
Trait Implementations
impl Debug for Move[src]
impl Clone for Move[src]
fn clone(&self) -> Move[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for Move[src]
impl PartialEq for Move[src]
fn eq(&self, __arg_0: &Move) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Move) -> bool[src]
This method tests for !=.