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

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

Implementations on Foreign Types

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