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§
Sourcefn to_byte_slice(&self) -> &[u8] ⓘ
fn to_byte_slice(&self) -> &[u8] ⓘ
Converts this instance into a byte slice
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".