pub trait FormattedValue: Copy + Clone + Sized + 'static {
    fn get_default_format() -> Format;
    fn try_from(v: GenericFormattedValue) -> Option<Self>;
    fn get_format(&self) -> Format;
    unsafe fn from_raw(format: Format, value: i64) -> Self;
    unsafe fn to_raw_value(&self) -> i64;
}

Required Methods

Implementors