pub trait TemporalMethods: AsSeries {
Show 16 methods // Provided methods fn hour(&self) -> PolarsResult<UInt32Chunked> { ... } fn minute(&self) -> PolarsResult<UInt32Chunked> { ... } fn second(&self) -> PolarsResult<UInt32Chunked> { ... } fn nanosecond(&self) -> PolarsResult<UInt32Chunked> { ... } fn day(&self) -> PolarsResult<UInt32Chunked> { ... } fn weekday(&self) -> PolarsResult<UInt32Chunked> { ... } fn week(&self) -> PolarsResult<UInt32Chunked> { ... } fn ordinal_day(&self) -> PolarsResult<UInt32Chunked> { ... } fn year(&self) -> PolarsResult<Int32Chunked> { ... } fn iso_year(&self) -> PolarsResult<Int32Chunked> { ... } fn ordinal_year(&self) -> PolarsResult<Int32Chunked> { ... } fn is_leap_year(&self) -> PolarsResult<BooleanChunked> { ... } fn quarter(&self) -> PolarsResult<UInt32Chunked> { ... } fn month(&self) -> PolarsResult<UInt32Chunked> { ... } fn to_string(&self, format: &str) -> PolarsResult<Series> { ... } fn strftime(&self, format: &str) -> PolarsResult<Series> { ... }
}

Provided Methods§

source

fn hour(&self) -> PolarsResult<UInt32Chunked>

Extract hour from underlying NaiveDateTime representation. Returns the hour number from 0 to 23.

source

fn minute(&self) -> PolarsResult<UInt32Chunked>

Extract minute from underlying NaiveDateTime representation. Returns the minute number from 0 to 59.

source

fn second(&self) -> PolarsResult<UInt32Chunked>

Extract second from underlying NaiveDateTime representation. Returns the second number from 0 to 59.

source

fn nanosecond(&self) -> PolarsResult<UInt32Chunked>

Returns the number of nanoseconds since the whole non-leap second. The range from 1,000,000,000 to 1,999,999,999 represents the leap second.

source

fn day(&self) -> PolarsResult<UInt32Chunked>

Extract day from underlying NaiveDateTime representation. Returns the day of month starting from 1.

The return value ranges from 1 to 31. (The last day of month differs by months.)

source

fn weekday(&self) -> PolarsResult<UInt32Chunked>

Returns the ISO weekday number where monday = 1 and sunday = 7

source

fn week(&self) -> PolarsResult<UInt32Chunked>

Returns the ISO week number starting from 1. The return value ranges from 1 to 53. (The last week of year differs by years.)

source

fn ordinal_day(&self) -> PolarsResult<UInt32Chunked>

Returns the day of year starting from 1.

The return value ranges from 1 to 366. (The last day of year differs by years.)

source

fn year(&self) -> PolarsResult<Int32Chunked>

Extract year from underlying NaiveDateTime representation. Returns the year number in the calendar date.

source

fn iso_year(&self) -> PolarsResult<Int32Chunked>

source

fn ordinal_year(&self) -> PolarsResult<Int32Chunked>

Extract ordinal year from underlying NaiveDateTime representation. Returns the year number in the calendar date.

source

fn is_leap_year(&self) -> PolarsResult<BooleanChunked>

Extract year from underlying NaiveDateTime representation. Returns whether the year is a leap year.

source

fn quarter(&self) -> PolarsResult<UInt32Chunked>

Extract quarter from underlying NaiveDateTime representation. Quarters range from 1 to 4.

source

fn month(&self) -> PolarsResult<UInt32Chunked>

Extract month from underlying NaiveDateTime representation. Returns the month number starting from 1.

The return value ranges from 1 to 12.

source

fn to_string(&self, format: &str) -> PolarsResult<Series>

Convert Time into Utf8 with the given format. See chrono strftime/strptime.

source

fn strftime(&self, format: &str) -> PolarsResult<Series>

Convert from Time into Utf8 with the given format. See chrono strftime/strptime.

Alias for to_string.

Implementors§