Trait ParsingOp

Source
pub trait ParsingOp {
    // Required method
    fn parse_into(&self, input: &'static str) -> Vec<(&'static str, ConstValue)>;

    // Provided method
    fn parse_all(&self, ctx: &Context) -> Vec<(&'static str, ConstValue)> { ... }
}

Required Methods§

Source

fn parse_into(&self, input: &'static str) -> Vec<(&'static str, ConstValue)>

Provided Methods§

Source

fn parse_all(&self, ctx: &Context) -> Vec<(&'static str, ConstValue)>

Implementors§