Enum cdrs::frame::frame_result::ChangeSchemeOptions [] [src]

pub enum ChangeSchemeOptions {
    Keyspace(String),
    Table((String, String)),
    Function((String, String, Vec<String>)),
}

Option that contains an information about changes were made.

Variants

Changes related to keyspaces. Contains keyspace name.

Changes related to tables. Contains keyspace and table names.

Changes related to functions and aggregations. Contains: * keyspace containing the user defined function / aggregate * the function/aggregate name * list of strings, one string for each argument type (as CQL type)

Trait Implementations

impl Debug for ChangeSchemeOptions
[src]

Formats the value using the given formatter.