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