Skip to main content

copc_temporal/
gps_time.rs

1/// Newtype over f64 GPS time. Implements Copy, PartialEq, PartialOrd.
2#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
3pub struct GpsTime(pub f64);