Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
ToByteSlice in datafusion::common::arrow::datatypes - Rust
[go: Go Back, main page]

Trait ToByteSlice

Source
pub trait ToByteSlice {
    // Required method
    fn to_byte_slice(&self) -> &[u8] ;
}
Expand description

Allows conversion from supported Arrow types to a byte slice.

Required Methods§

Source

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

Converts this instance into a byte slice

Implementations on Foreign Types§

Source§

impl<T> ToByteSlice for [T]
where T: ArrowNativeType,

Source§

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

Implementors§

Source§

impl<T> ToByteSlice for T
where T: ArrowNativeType,