Trait Formatted Value Full Range
Source pub trait FormattedValueFullRange: FormattedValue + TryFrom<GenericFormattedValue> {
// Required method
unsafe fn from_raw(format: Format, value: i64) -> Self;
}Expand description
A FormattedValue which can be built from any raw value.
§Examples:
GenericFormattedValueis theFormattedValueFullRangetype forGenericFormattedValue.Undefinedis theFormattedValueFullRangetype forUndefined.Option<Percent>is theFormattedValueFullRangetype forPercent.
Required Methods§
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.