trait PrimitiveEncode: ArrowNativeType {
    type Buffer;
    // Required methods
    fn init_buffer() -> Self::Buffer;
    fn encode(self, buf: &mut Self::Buffer) -> &[u8] ⓘ;
}Required Associated Types§
Required Methods§
fn init_buffer() -> Self::Buffer
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.