pub trait FormattedValue: Copy + Clone + Sized + Into<GenericFormattedValue> + 'static {
    fn default_format() -> Format;
    fn format(&self) -> Format;
    unsafe fn from_raw(format: Format, value: i64) -> Self;
    unsafe fn into_raw_value(self) -> i64;
}

Required Methods

Implementations on Foreign Types

Implementors