Skip to main content

Input

Trait Input 

Source
pub trait Input {
    type Cursor: Cursor;

    // Required methods
    fn cursor_at(&mut self, offset: u32) -> &mut Self::Cursor;
    fn eq(&mut self, range1: Range<u32>, range2: Range<u32>) -> bool;
}

Required Associated Types§

Required Methods§

Source

fn cursor_at(&mut self, offset: u32) -> &mut Self::Cursor

Source

fn eq(&mut self, range1: Range<u32>, range2: Range<u32>) -> bool

Implementors§