Enum commands::parser::VerifyError [] [src]

pub enum VerifyError {
    NoCommandAccepted,
    MissingParameter(String),
}

Errors that calling verify on the Parser can raise.

Variants

NoCommandAccepted

No command has been accepted by the parser.

MissingParameter

A required parameter is missing.

Trait Implementations

impl Error for VerifyError

fn description(&self) -> &str

1.0.0fn cause(&self) -> Option<&Error>

impl Display for VerifyError

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>

Derived Implementations

impl Debug for VerifyError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for VerifyError

fn clone(&self) -> VerifyError

1.0.0fn clone_from(&mut self, source: &Self)