Trait syslog_ng_common::ParserBuilder [] [src]

pub trait ParserBuilder<P: Pipe> {
    type Parser: Parser<P>;
    fn new() -> Self;
    fn build(self) -> Result<Self::Parser, OptionError>;

    fn option(&mut self, _name: String, _value: String) { ... }
}

Associated Types

type Parser: Parser<P>

Required Methods

fn new() -> Self

fn build(self) -> Result<Self::Parser, OptionError>

Provided Methods

fn option(&mut self, _name: String, _value: String)

Implementors