Enum crfsuite::CrfSuiteError[][src]

pub enum CrfSuiteError {
    Incompatible,
    InternalLogic,
    NotImplemented,
    NotSupported,
    OutOfMemory,
    Overflow,
    Unknown,
}

Errors from crfsuite ffi functions

Variants

Incompatible data

Internal error

Not implemented

Unsupported operation

Insufficient memory

Overflow

Unknown error occurred

Trait Implementations

impl Debug for CrfSuiteError
[src]

Formats the value using the given formatter. Read more

impl Clone for CrfSuiteError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CrfSuiteError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Error for CrfSuiteError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for CrfSuiteError
[src]

Formats the value using the given formatter. Read more

impl From<c_int> for CrfSuiteError
[src]

Performs the conversion.

Auto Trait Implementations