Trait IntoValue

Source
pub trait IntoValue {
    // Required method
    fn into_value(&self) -> Value;
}

Required Methods§

Source

fn into_value(&self) -> Value

Implementors§

Source§

impl<T: 'static> IntoValue for Prim<T>

Source§

impl<T: Clone + 'static> IntoValue for List<T>

Source§

impl<T: PartialEq + Clone + 'static> IntoValue for HistPrim<T>