Enum chrono_systemd_time::InvalidTimestamp[][src]

pub enum InvalidTimestamp {
    Format(String),
    Number(String),
    TimeUnit(String),
}

Describes an error during the parsing of a timestamp.

Variants

The timestamp is incorrectly formatted.

The timestamp contains a component that cannot be parsed into a number, or the number overflowed.

The timestamp contains a component that cannot be parsed into a time unit.

Trait Implementations

impl Debug for InvalidTimestamp
[src]

Formats the value using the given formatter. Read more

impl Error for InvalidTimestamp
[src]

This method is soft-deprecated. Read more

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

impl Display for InvalidTimestamp
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations