pub trait NativeDecimalType:
Copy
+ Eq
+ Ord
+ Default
+ Send
+ Sync
+ BigCast
+ Debug
+ Display
+ 'static {
const VALUES_TYPE: DecimalValueType;
// Required method
fn maybe_from(decimal_type: DecimalValue) -> Option<Self>;
}Expand description
Type of decimal scalar values.
Required Associated Constants§
Required Methods§
fn maybe_from(decimal_type: DecimalValue) -> Option<Self>
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.