[][src]Trait arrow::datatypes::ArrowPrimitiveType

pub trait ArrowPrimitiveType: Send + Sync + Copy + PartialOrd + 'static { }

Trait indicating a primitive fixed-width type (bool, ints and floats).

This trait is a marker trait to indicate a primitive type, i.e. a type that occupies a fixed size in memory as indicated in bit or byte width.

Implementations on Foreign Types

impl ArrowPrimitiveType for bool
[src]

impl ArrowPrimitiveType for u8
[src]

impl ArrowPrimitiveType for u16
[src]

impl ArrowPrimitiveType for u32
[src]

impl ArrowPrimitiveType for u64
[src]

impl ArrowPrimitiveType for i8
[src]

impl ArrowPrimitiveType for i16
[src]

impl ArrowPrimitiveType for i32
[src]

impl ArrowPrimitiveType for i64
[src]

impl ArrowPrimitiveType for f32
[src]

impl ArrowPrimitiveType for f64
[src]

Implementors