Struct arrow_array::types::TimestampMillisecondType
source · pub struct TimestampMillisecondType {}
Expand description
A timestamp millisecond type with an optional timezone.
Trait Implementations§
source§impl ArrowPrimitiveType for TimestampMillisecondType
impl ArrowPrimitiveType for TimestampMillisecondType
source§fn get_byte_width() -> usize
fn get_byte_width() -> usize
Returns the byte width of this primitive type.
source§fn default_value() -> Self::Native
fn default_value() -> Self::Native
Returns a default value of this primitive type. Read more
source§impl ArrowTimestampType for TimestampMillisecondType
impl ArrowTimestampType for TimestampMillisecondType
source§fn make_value(naive: NaiveDateTime) -> Option<i64>
fn make_value(naive: NaiveDateTime) -> Option<i64>
Creates a ArrowTimestampType::Native from the provided
NaiveDateTime
Read moresource§fn get_time_unit() -> TimeUnit
fn get_time_unit() -> TimeUnit
👎Deprecated: Use Self::UNIT
Returns the
TimeUnit
of this timestamp.