pub trait FromCqlVal<T>: Sized {
    fn from_cql(cql_val: T) -> Result<Self, FromCqlValError>;
}
Expand description

This trait defines a way to convert CqlValue or Option into some rust type

Required Methods

Implementations on Foreign Types

Implementors