Enum argdata::NotRead[][src]

pub enum NotRead {
    NoFit(NoFit),
    Error(ReadError),
}

The reason why an Argdata::read_*() call didn't return a value.

Variants

The value couldn't be read, because it wouldn't fit in the requested type. (Because it the value is of a different type, or isn't big enough.)

The value seems to be of the requested type, but it couldn't be read because of an error.

Trait Implementations

impl Debug for NotRead
[src]

Formats the value using the given formatter. Read more

impl Clone for NotRead
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NotRead
[src]

impl PartialEq for NotRead
[src]

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

This method tests for !=.

impl Eq for NotRead
[src]

impl From<ReadError> for NotRead
[src]

Performs the conversion.

impl From<NoFit> for NotRead
[src]

Performs the conversion.

impl From<Utf8Error> for NotRead
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NotRead

impl Sync for NotRead