logo
pub trait ParseTimestamp {
    fn parse_timestamp(&self) -> Result<Time, Error>;
}
Expand description

Parse Time from a type

Required methods

Parse Time, or return an Error if parsing failed

Implementors