Trait FieldValue

Source
pub trait FieldValue {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result;
}
Expand description

The FieldValue trait is implemented by the legal line protocol types.

Required Methods§

Source

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Implementations on Foreign Types§

Source§

impl FieldValue for &str

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Source§

impl FieldValue for bool

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Source§

impl FieldValue for f64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Source§

impl FieldValue for i64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Source§

impl FieldValue for u64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Implementors§