//! Contains Serde serializer/deserializer for converting a Unix Timestamp in
//! `String` format into a `time::PrimitiveDateTime` struct.
use ;
use PrimitiveDateTime;
/// This trait converts a Unix Timestamp in `String` format into a
/// `time::PrimitiveDateTime` struct. The Unix Timestamp is the number of
/// seconds that have elapsed since the Unix epoch, that is the time
/// `00:00:00 UTC on 1 January 1970`, minus leap seconds. The Google Maps
/// Platform returns some fields in the Unix Timestamp format and it's handier
/// to be able to use them as a PrimitiveDateTime.
// fn