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:
GenericFormattedValue
is theFormattedValueFullRange
type forGenericFormattedValue
.Undefined
is theFormattedValueFullRange
type forUndefined
.Option<Percent>
is theFormattedValueFullRange
type 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.