Trait polars::prelude::chunkedarray::DurationMethods

source ·
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§

source

fn hours(&self) -> ChunkedArray<Int64Type>

Extract the hours from a Duration

source

fn days(&self) -> ChunkedArray<Int64Type>

Extract the days from a Duration

source

fn minutes(&self) -> ChunkedArray<Int64Type>

Extract the minutes from a Duration

source

fn seconds(&self) -> ChunkedArray<Int64Type>

Extract the seconds from a Duration

source

fn milliseconds(&self) -> ChunkedArray<Int64Type>

Extract the milliseconds from a Duration

source

fn microseconds(&self) -> ChunkedArray<Int64Type>

Extract the microseconds from a Duration

source

fn nanoseconds(&self) -> ChunkedArray<Int64Type>

Extract the nanoseconds from a Duration

Implementors§