Skip to main content

mz_proto/mnt/build/debug/build/mz-proto-5c1f924c1e9015eb/out/
mz_proto.chrono.rs

1// This file is @generated by prost-build.
2#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
3pub struct ProtoTz {
4    #[prost(string, tag = "1")]
5    pub name: ::prost::alloc::string::String,
6}
7#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
8pub struct ProtoNaiveTime {
9    /// The number of seconds since midnight
10    #[prost(uint32, tag = "1")]
11    pub secs: u32,
12    /// Additional fractional seconds since midnight in nanosecond granularity.
13    /// This can can exceed 1,000,000,000 in order to represent the leap second.
14    #[prost(uint32, tag = "2")]
15    pub frac: u32,
16}
17#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
18pub struct ProtoNaiveDateTime {
19    /// Year
20    #[prost(int32, tag = "1")]
21    pub year: i32,
22    /// Day-of-year (0..365)
23    #[prost(uint32, tag = "2")]
24    pub ordinal: u32,
25    /// The number of seconds since midnight
26    #[prost(uint32, tag = "3")]
27    pub secs: u32,
28    /// Additional fractional seconds since midnight in nanosecond granularity.
29    /// This can can exceed 1,000,000,000 in order to represent the leap second.
30    #[prost(uint32, tag = "4")]
31    pub frac: u32,
32}
33#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
34pub struct ProtoFixedOffset {
35    #[prost(int32, tag = "1")]
36    pub local_minus_utc: i32,
37}