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§