//! Contains Serde serializer/deserializer for converting a Unix Timestamp in
//! `String` format into a `chrono::NaiveDateTime` struct.
use NaiveDateTime;
use ;
/// This trait converts a Unix Timestamp in `String` format into a
/// `chrono::NaiveDateTime` 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 NaiveDateTime.
// fn