Enum aprs_parser::Timestamp
[−]
[src]
pub enum Timestamp {
DDHHMM(u8, u8, u8),
HHMMSS(u8, u8, u8),
Unsupported(String),
}Variants
DDHHMM(u8, u8, u8)Day of month, Hour and Minute in UTC
HHMMSS(u8, u8, u8)Hour, Minute and Second in UTC
Unsupported(String)Unsupported timestamp format
Trait Implementations
impl Eq for Timestamp[src]
impl PartialEq for Timestamp[src]
fn eq(&self, __arg_0: &Timestamp) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Timestamp) -> bool[src]
This method tests for !=.
impl Debug for Timestamp[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Clone for Timestamp[src]
fn clone(&self) -> Timestamp[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more