Trait TypedValue

Source
pub trait TypedValue {
    // Required method
    fn value_type(&self) -> ValueType;
}
Expand description

Type information on a value

Required Methods§

Source

fn value_type(&self) -> ValueType

Gets the type of the current value

Implementations on Foreign Types§

Source§

impl<V> TypedValue for Option<V>
where V: TypedValue,

Source§

impl<V> TypedValue for &V
where V: TypedValue,

Source§

impl<V, E> TypedValue for Result<V, E>
where V: TypedValue,

Implementors§