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

Required Methods

Extract the hours from a Duration

Extract the days from a Duration

Extract the minutes from a Duration

Extract the seconds from a Duration

Extract the milliseconds from a Duration

Extract the microseconds from a Duration

Extract the nanoseconds from a Duration

Implementors