[][src]Struct polars::datatypes::TimestampSecondType

pub struct TimestampSecondType {}

Trait Implementations

impl ArrowNumericType for TimestampSecondType[src]

impl ArrowPrimitiveType for TimestampSecondType[src]

type Native = i64

Corresponding Rust native type for the primitive type.

impl ArrowTemporalType for TimestampSecondType[src]

impl ArrowTimestampType for TimestampSecondType[src]

impl Debug for TimestampSecondType[src]

impl FromNaiveDateTime<TimestampSecondType, NaiveDateTime> for TimestampSecondChunked[src]

impl PolarsIntegerType for TimestampSecondType[src]

impl PolarsNumericType for TimestampSecondType[src]

type Simd = i64x8

Defines the SIMD type that should be used for this numeric type

type SimdMask = m64x8

Defines the SIMD Mask type that should be used for this numeric type

fn mask_select(mask: Self::SimdMask, a: Self::Simd, b: Self::Simd) -> Self::Simd[src]

Selects elements of a and b using mask

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> FromCast<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> PolarsDataType for T where
    T: ArrowPrimitiveType
[src]

impl<T> PolarsSingleType for T where
    T: ArrowPrimitiveType + PolarsDataType
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,