Trait scylla_rs::cql::Values[][src]

pub trait Values: Sized {
    type Return: Values<Return = Self::Return>;
    fn value<V: ColumnEncoder>(self, value: &V) -> Self::Return;
fn unset_value(self) -> Self::Return;
fn null_value(self) -> Self::Return; }
Expand description

Defines shared functionality for frames that can receive statement values

Associated Types

The return type after applying a value

Required methods

Value of type V.

Unset value.

Set Null value, note: for write queries this will create tombstone for V;

Implementors