Struct 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 Debug for OutOfRangeError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for OutOfRangeError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for OutOfRangeError
[src]

impl PartialEq for OutOfRangeError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for OutOfRangeError
[src]

impl Display for OutOfRangeError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for OutOfRangeError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations