Enum validators::ValidatedCustomizedVecError[][src]

pub enum ValidatedCustomizedVecError {
    Overflow,
    Underflow,
    NotSupport,
    UTF8Error(Utf8Error),
}

Variants

Trait Implementations

impl Debug for ValidatedCustomizedVecError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ValidatedCustomizedVecError
[src]

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

This method tests for !=.

impl Clone for ValidatedCustomizedVecError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for ValidatedCustomizedVecError
[src]

Formats the value using the given formatter. Read more

impl Error for ValidatedCustomizedVecError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations