Struct mysql::time::OutOfRangeError[][src]

pub struct OutOfRangeError(_);

Represents error when converting Duration to/from a standard library implementation

The std::time::Duration supports a range from zero to u64::MAX seconds, while this module supports signed range of up to i64::MAX of milliseconds.

Trait Implementations

impl Error for OutOfRangeError
[src]

This method is soft-deprecated. Read more

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

impl Display for OutOfRangeError
[src]

Formats the value using the given formatter. Read more

impl Clone for OutOfRangeError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OutOfRangeError
[src]

Formats the value using the given formatter. Read more

impl Copy for OutOfRangeError
[src]

impl Eq for OutOfRangeError
[src]

impl PartialEq<OutOfRangeError> for OutOfRangeError
[src]

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

This method tests for !=.

Auto Trait Implementations