| 41 | #[cfg_attr(any(test, feature = "proptest"), derive(Arbitrary))] |
| 42 | #[repr(transparent)] |
| 43 | pub struct Timestamp { |
| 44 | /// note no `pub`. |
| 45 | internal: u64, |
| 46 | } |
| 47 | |
| 48 | impl PartialEq<&Timestamp> for Timestamp { |
| 49 | fn eq(&self, other: &&Timestamp) -> bool { |
no outgoing calls