pub trait ToHex: ArrowNativeType {
// Required method
fn write_hex(self, case: HexCase, buf: &mut [u8; 16]) -> &[u8] ⓘ;
}Expand description
Trait for converting integer types to hexadecimal in a buffer
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".