Enum cassandra_protocol::query::query_values::QueryValues [−][src]
Expand description
Enum that represents two types of query values:
- values without name
- values with names
Variants
SimpleValues(Vec<Value>)
NamedValues(HashMap<String, Value>)
Implementations
Trait Implementations
Converts values from Vec
to query values without names QueryValues::SimpleValues
.
Converts values from HashMap
to query values with names QueryValues::NamedValues
.
Converts values from Vec
to query values without names QueryValues::SimpleValues
.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for QueryValues
impl Send for QueryValues
impl Sync for QueryValues
impl Unpin for QueryValues
impl UnwindSafe for QueryValues
Blanket Implementations
Mutably borrows from an owned value. Read more