pub trait FieldValueWriter {
    // Required method
    fn write_value(&self, writer: Writer<'_>, field: &'static str) -> Result;
}

Required Methods§

source

fn write_value(&self, writer: Writer<'_>, field: &'static str) -> Result

Errors

If we fail to format the value a fmt Err will be returned

Implementors§