pub trait DurationMethods {
// Required methods
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>;
}
Available on crate feature
temporal
only.Required Methods§
Sourcefn hours(&self) -> ChunkedArray<Int64Type>
fn hours(&self) -> ChunkedArray<Int64Type>
Extract the hours from a Duration
Sourcefn days(&self) -> ChunkedArray<Int64Type>
fn days(&self) -> ChunkedArray<Int64Type>
Extract the days from a Duration
Sourcefn minutes(&self) -> ChunkedArray<Int64Type>
fn minutes(&self) -> ChunkedArray<Int64Type>
Extract the minutes from a Duration
Sourcefn seconds(&self) -> ChunkedArray<Int64Type>
fn seconds(&self) -> ChunkedArray<Int64Type>
Extract the seconds from a Duration
Sourcefn milliseconds(&self) -> ChunkedArray<Int64Type>
fn milliseconds(&self) -> ChunkedArray<Int64Type>
Extract the milliseconds from a Duration
Sourcefn microseconds(&self) -> ChunkedArray<Int64Type>
fn microseconds(&self) -> ChunkedArray<Int64Type>
Extract the microseconds from a Duration
Sourcefn nanoseconds(&self) -> ChunkedArray<Int64Type>
fn nanoseconds(&self) -> ChunkedArray<Int64Type>
Extract the nanoseconds from a Duration