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 the FormattedValueFullRange type for GenericFormattedValue.
  • Undefined is the FormattedValueFullRange type for Undefined.
  • Option<Percent> is the FormattedValueFullRange type for Percent.

Required Methods§

source

unsafe fn from_raw(format: Format, value: i64) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FormattedValueFullRange for Option<Buffers>

source§

unsafe fn from_raw(format: Format, value: i64) -> Self

source§

impl FormattedValueFullRange for Option<Bytes>

source§

unsafe fn from_raw(format: Format, value: i64) -> Self

source§

impl FormattedValueFullRange for Option<ClockTime>

source§

unsafe fn from_raw(format: Format, value: i64) -> Self

source§

impl FormattedValueFullRange for Option<Default>

source§

unsafe fn from_raw(format: Format, value: i64) -> Self

source§

impl FormattedValueFullRange for Option<Percent>

source§

unsafe fn from_raw(format: Format, value: i64) -> Self

Implementors§