Enum conv::errors::NoError [] [src]

pub enum NoError {}

Indicates that it is not possible for the conversion to fail.

You can use the UnwrapOk::unwrap_ok method to discard the (statically impossible) Err case from a Result<_, NoError>, without using Result::unwrap (which is typically viewed as a "code smell").

Trait Implementations

impl Copy for NoError
[src]

impl Clone for NoError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for NoError
[src]

impl PartialEq for NoError
[src]

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

This method tests for !=.

impl Ord for NoError
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for NoError
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for NoError
[src]

Formats the value using the given formatter.

impl Display for NoError
[src]

Formats the value using the given formatter. Read more

impl Error for NoError
[src]

A short description of the error. Read more

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