pub trait FromRow: Sized {
    fn from_row(row: Row) -> Result<Self, FromRowError>;
}
Expand description

This trait defines a way to convert CQL Row into some rust type

Required Methods

Implementations on Foreign Types

Implementors