pub trait NativeDecimalType: Send + Sync + Copy + AsRef<[u8]> {
    fn from_slice(slice: &[u8]) -> Self;
}
Expand description

Trait representing the in-memory layout of a decimal type

Required Methods

Implementations on Foreign Types

Implementors