Struct prost_types::TimestampOutOfSystemRangeError [−][src]
#[non_exhaustive]pub struct TimestampOutOfSystemRangeError {
pub timestamp: Timestamp,
}Expand description
Indicates that a Timestamp could not be converted to
SystemTime because it is out of range.
The range of times that can be represented by SystemTime depends on the platform.
All Timestamps are likely representable on 64-bit Unix-like platforms, but
other platforms, such as Windows and 32-bit Linux, may not be able to represent
the full range of Timestamps.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.timestamp: Timestamp