[][src]Struct arrow::ipc::gen::Schema::Date

pub struct Date<'a> {
    pub _tab: Table<'a>,
}

Date is either a 32-bit or 64-bit type representing elapsed time since UNIX epoch (1970-01-01), stored in either of two units:

  • Milliseconds (64 bits) indicating UNIX time elapsed since the epoch (no leap seconds), where the values are evenly divisible by 86400000
  • Days (32 bits) since the UNIX epoch

Fields

_tab: Table<'a>

Implementations

impl<'a> Date<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args DateArgs
) -> WIPOffset<Date<'bldr>>
[src]

pub const VT_UNIT: VOffsetT[src]

pub fn unit(&self) -> DateUnit[src]

Trait Implementations

impl<'a> Clone for Date<'a>[src]

impl<'a> Copy for Date<'a>[src]

impl<'a> Debug for Date<'a>[src]

impl<'a> Follow<'a> for Date<'a>[src]

type Inner = Date<'a>

impl<'a> PartialEq<Date<'a>> for Date<'a>[src]

impl<'a> StructuralPartialEq for Date<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Date<'a>

impl<'a> Send for Date<'a>

impl<'a> Sync for Date<'a>

impl<'a> Unpin for Date<'a>

impl<'a> UnwindSafe for Date<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,