trait NativeDecimalType: DecimalType {
type NativeBytes: AsRef<[u8]>;
// Required method
fn to_be_bytes(value: Self::Native) -> Self::NativeBytes;
}Required Associated Types§
type NativeBytes: AsRef<[u8]>
Required Methods§
fn to_be_bytes(value: Self::Native) -> Self::NativeBytes
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".