Enum terminal_cli::PropertyValidationError [] [src]

pub enum PropertyValidationError<T> {
    InvalidInput,
    ValueTooSmall {
        min: T,
        val: T,
    },
    ValueTooBig {
        max: T,
        val: T,
    },
}

Variants

Fields of ValueTooSmall

Fields of ValueTooBig

Trait Implementations

impl<T: Debug> Debug for PropertyValidationError<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for PropertyValidationError<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for PropertyValidationError<T>
[src]

[src]

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

[src]

This method tests for !=.