[][src]Trait arrow::datatypes::ToByteSlice

pub trait ToByteSlice {
    fn to_byte_slice(&self) -> &[u8];
}

Allows conversion from supported Arrow types to a byte slice.

Required methods

fn to_byte_slice(&self) -> &[u8]

Converts this instance into a byte slice

Loading content...

Implementations on Foreign Types

impl<T: ArrowNativeType> ToByteSlice for [T][src]

Loading content...

Implementors

impl<T: ArrowNativeType> ToByteSlice for T[src]

Loading content...