Trait peresil::StrParseExt [] [src]

pub trait StrParseExt {
    fn end_of_start_rest<F1, F2>(&self, is_first: F1, is_rest: F2) -> Option<usize> where F1: Fn(char) -> bool, F2: Fn(char) -> bool;
    fn end_of_literal(&self, expected: &str) -> Option<usize>;
}

Required Methods

fn end_of_start_rest<F1, F2>(&self, is_first: F1, is_rest: F2) -> Option<usize> where F1: Fn(char) -> bool, F2: Fn(char) -> bool

fn end_of_literal(&self, expected: &str) -> Option<usize>

Implementors