pub trait TryFromValue<T> {
    fn try_from_value(datatype: &DataType, value: T) -> Result<ScalarValue>;
}

Required Methods

Implementors