Enum kairosdb::query::Time
[−]
[src]
pub enum Time {
UTC(DateTime<UTC>),
Local(DateTime<Local>),
Nanoseconds(i64),
Relative {
value: i64,
unit: TimeUnit,
},
}Type to support the several time definitions for the client
Variants
UTC(DateTime<UTC>)Local(DateTime<Local>)Nanoseconds(i64)RelativeFields of Relative
value: i64 | |
unit: TimeUnit |