Trait ScalarValue

Source
pub trait ScalarValue {
    // Required methods
    fn from_value(value: Value) -> Result<Self>
       where Self: Sized;
    fn to_value(&self) -> Value;
}

Required Methods§

Source

fn from_value(value: Value) -> Result<Self>
where Self: Sized,

Source

fn to_value(&self) -> Value

Implementors§