pub trait FormattedValueIntrinsic: Copy + Clone + Sized + 'static {
    type FormattedValueType: FormattedValue;
}
Expand description

A trait implemented on the intrinsic type of a FormattedValue.

Examples

  • GenericFormattedValue is the intrinsic type for GenericFormattedValue.
  • Undefined is the intrinsic type for Undefined.
  • Bytes is the intrinsic type for Option<Bytes>.

Required Associated Types

Implementors