Trait oni_comb_parser_rs::prelude::PrimitiveParsers

source ·
pub trait PrimitiveParsers: Parsers {
    // Required methods
    fn end<'a, I>() -> Self::P<'a, I, ()>
       where I: Debug + Display + 'a;
    fn empty<'a, I>() -> Self::P<'a, I, ()>;

    // Provided method
    fn begin<'a, I>() -> Self::P<'a, I, ()> { ... }
}

Required Methods§

source

fn end<'a, I>() -> Self::P<'a, I, ()>
where I: Debug + Display + 'a,

source

fn empty<'a, I>() -> Self::P<'a, I, ()>

Provided Methods§

source

fn begin<'a, I>() -> Self::P<'a, I, ()>

Object Safety§

This trait is not object safe.

Implementors§