Enum hifitime::instant::Era [] [src]

pub enum Era {
    Past,
    Present,
}

An Era represents whether the associated Instant is before the TAI Epoch (01 Jan 1900, midnight) or afterwards. If it is before, than it's refered to as "Past", otherwise is in the "Present" era.

use hifitime::instant::Era;
assert!(Era::Past < Era::Present);

Variants

Trait Implementations

impl Clone for Era
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Era
[src]

impl Debug for Era
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Era
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialOrd for Era
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

impl Display for Era
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Era

impl Sync for Era