pub trait AsRustType<T> {
    fn get(&self, index: usize) -> Result<T>;
    fn get_by_name<S>(&self, name: S) -> Result<T>
    where
        S: Into<String>
; }
Expand description

Auto inferencing conversion from c* to rust

Required Methods§

convert while reading cassandra columns

convert while reading cassandra columns by name

Implementors§