Trait PrimitiveArrayItemType

Source
pub trait PrimitiveArrayItemType
where for<'a> Self: Sized + Default + PartialOrd + ZeroHeapSize + Scalar<ScalarRefType<'a> = Self> + ScalarRef<'a, ScalarType = Self>,
{ const DATA_TYPE: DataType; // Required methods fn erase_array_type(arr: PrimitiveArray<Self>) -> ArrayImpl; fn try_into_array(arr: ArrayImpl) -> Option<PrimitiveArray<Self>>; fn try_into_array_ref(arr: &ArrayImpl) -> Option<&PrimitiveArray<Self>>; fn array_type() -> ArrayType; fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize>; fn from_protobuf(cur: &mut Cursor<&[u8]>) -> ArrayResult<Self>; }
Expand description

Physical type of array items which have fixed size.

Required Associated Constants§

Source

const DATA_TYPE: DataType

The data type.

Required Methods§

Source

fn erase_array_type(arr: PrimitiveArray<Self>) -> ArrayImpl

A helper to convert a primitive array to ArrayImpl.

Source

fn try_into_array(arr: ArrayImpl) -> Option<PrimitiveArray<Self>>

A helper to convert ArrayImpl to self.

Source

fn try_into_array_ref(arr: &ArrayImpl) -> Option<&PrimitiveArray<Self>>

A helper to convert ArrayImpl to self.

Source

fn array_type() -> ArrayType

Returns array type of the primitive array

Source

fn to_protobuf<T: Write>(self, output: &mut T) -> ArrayResult<usize>

Source

fn from_protobuf(cur: &mut Cursor<&[u8]>) -> ArrayResult<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl PrimitiveArrayItemType for i16

Source§

impl PrimitiveArrayItemType for i32

Source§

impl PrimitiveArrayItemType for i64

Implementors§