Enum aprs_parser::Timestamp [] [src]

pub enum Timestamp {
    DDHHMM(u8u8u8),
    HHMMSS(u8u8u8),
    Unsupported(String),
}

Variants

Day of month, Hour and Minute in UTC

Hour, Minute and Second in UTC

Unsupported timestamp format

Trait Implementations

impl Eq for Timestamp
[src]

impl PartialEq for Timestamp
[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 Debug for Timestamp
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Timestamp
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl FromStr for Timestamp
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for Timestamp

impl Sync for Timestamp