[][src]Trait arrow::datatypes::ArrowNativeType

pub trait ArrowNativeType: Debug + Send + Sync + Copy + PartialOrd + FromStr + 'static {
    fn into_json_value(self) -> Option<Value>;

    fn from_usize(_: usize) -> Option<Self> { ... }
fn to_usize(&self) -> Option<usize> { ... } }

Required methods

Loading content...

Provided methods

fn from_usize(_: usize) -> Option<Self>

Convert native type from usize.

fn to_usize(&self) -> Option<usize>

Convert native type to usize.

Loading content...

Implementations on Foreign Types

impl ArrowNativeType for bool[src]

impl ArrowNativeType for i8[src]

impl ArrowNativeType for i16[src]

impl ArrowNativeType for i32[src]

impl ArrowNativeType for i64[src]

impl ArrowNativeType for u8[src]

impl ArrowNativeType for u16[src]

impl ArrowNativeType for u32[src]

impl ArrowNativeType for u64[src]

impl ArrowNativeType for f32[src]

impl ArrowNativeType for f64[src]

Loading content...

Implementors

Loading content...