DurationMethods

Trait DurationMethods 

Source
pub trait DurationMethods {
Show 14 methods // Required methods fn days(&self) -> ChunkedArray<Int64Type>; fn days_fractional(&self) -> ChunkedArray<Float64Type>; fn hours(&self) -> ChunkedArray<Int64Type>; fn hours_fractional(&self) -> ChunkedArray<Float64Type>; fn minutes(&self) -> ChunkedArray<Int64Type>; fn minutes_fractional(&self) -> ChunkedArray<Float64Type>; fn seconds(&self) -> ChunkedArray<Int64Type>; fn seconds_fractional(&self) -> ChunkedArray<Float64Type>; fn milliseconds(&self) -> ChunkedArray<Int64Type>; fn milliseconds_fractional(&self) -> ChunkedArray<Float64Type>; fn microseconds(&self) -> ChunkedArray<Int64Type>; fn microseconds_fractional(&self) -> ChunkedArray<Float64Type>; fn nanoseconds(&self) -> ChunkedArray<Int64Type>; fn nanoseconds_fractional(&self) -> ChunkedArray<Float64Type>;
}
Available on crate feature temporal only.

Required Methods§

Source

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

Extract the days from a Duration

Source

fn days_fractional(&self) -> ChunkedArray<Float64Type>

Extract the days from a Duration as a fractional value

Source

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

Extract the hours from a Duration

Source

fn hours_fractional(&self) -> ChunkedArray<Float64Type>

Extract the hours from a Duration as a fractional value

Source

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

Extract the minutes from a Duration

Source

fn minutes_fractional(&self) -> ChunkedArray<Float64Type>

Extract the minutes from a Duration as a fractional value

Source

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

Extract the seconds from a Duration

Source

fn seconds_fractional(&self) -> ChunkedArray<Float64Type>

Extract the seconds from a Duration as a fractional value

Source

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

Extract the milliseconds from a Duration

Source

fn milliseconds_fractional(&self) -> ChunkedArray<Float64Type>

Extract the milliseconds from a Duration as a fractional value

Source

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

Extract the microseconds from a Duration

Source

fn microseconds_fractional(&self) -> ChunkedArray<Float64Type>

Extract the microseconds from a Duration as a fractional value

Source

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

Extract the nanoseconds from a Duration

Source

fn nanoseconds_fractional(&self) -> ChunkedArray<Float64Type>

Extract the nanoseconds from a Duration as a fractional value

Implementors§