[][src]Trait cql_model::CqlWritable

pub trait CqlWritable: CqlType {
    fn write_to_db(
        db_location: &str,
        value_location: u64,
        input_value: Self::ValueType
    ); }

A CQL Value Type with single point write capability.

Allows the implementing type's Self::ValueType to be written to a CQL database.

Required methods

fn write_to_db(
    db_location: &str,
    value_location: u64,
    input_value: Self::ValueType
)

Writes the given input_value to the given value_location in the given db_location (file path).

Loading content...

Implementors

Loading content...