1
2
3
4
5
6
7
/// Which parse to use (when possible).
pub enum WhichParser {
    /// Pure Rust parser.
    Pure,
    /// Parse using external `protoc` command.
    Protoc,
}