Skip to main content

DateArray

Type Alias DateArray 

Source
pub type DateArray = PrimitiveArray<Date>;

Aliased Type§

pub struct DateArray {
    bitmap: Bitmap,
    data: Box<[Date]>,
}

Fields§

§bitmap: Bitmap§data: Box<[Date]>

Trait Implementations§

Source§

impl<'a> From<&'a ArrayImpl> for &'a DateArray

Source§

fn from(array: &'a ArrayImpl) -> Self

Converts to this type from the input type.
Source§

impl From<ArrayImpl> for DateArray

Source§

fn from(array: ArrayImpl) -> Self

Converts to this type from the input type.
Source§

impl TryFrom<&PrimitiveArray<Date32Type>> for DateArray

Source§

type Error = ArrayError

The type returned in the event of a conversion error.
Source§

fn try_from(array: &Date32Array) -> Result<Self, Self::Error>

Performs the conversion.