pub trait DurationMethods {
    fn hours(&self) -> ChunkedArray<Int64Type>;
fn days(&self) -> ChunkedArray<Int64Type>;
fn milliseconds(&self) -> ChunkedArray<Int64Type>;
fn nanoseconds(&self) -> ChunkedArray<Int64Type>;
fn seconds(&self) -> ChunkedArray<Int64Type>; }

Required methods

Extract the hours from a Duration

Extract the days from a Duration

Extract the milliseconds from a Duration

Extract the nanoseconds from a Duration

Extract the seconds from a Duration

Implementors