pub enum Tz {
OffsetZero,
Utc,
}Expand description
Timezone representation for timestamps.
Avro only distinguishes between UTC and local time (no timezone), but Arrow supports any of the two identifiers of the UTC timezone: “+00:00” and “UTC”. The data types using these time zone IDs behave identically, but are not logically equal.
Variants§
OffsetZero
Represent Avro timestamp-* logical types with “+00:00” timezone ID
Utc
Represent Avro timestamp-* logical types with “UTC” timezone ID
Implementations§
Trait Implementations§
impl Copy for Tz
impl StructuralPartialEq for Tz
Auto Trait Implementations§
impl Freeze for Tz
impl RefUnwindSafe for Tz
impl Send for Tz
impl Sync for Tz
impl Unpin for Tz
impl UnsafeUnpin for Tz
impl UnwindSafe for Tz
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more