pub trait ParseOptions: Default {
    fn is_valid(&self) -> bool;
}
Expand description

Shared trait for all parser options.

Required Methods

Determine if the options are valid.

Implementors