pub enum QueryFlags {
Value,
SkipMetadata,
PageSize,
WithPagingState,
WithSerialConsistency,
WithDefaultTimestamp,
WithNamesForValues,
}
Expand description
Cassandra Query Flags.
Variants§
Value
If set indicates that Query Params contains value.
SkipMetadata
If set indicates that Query Params does not contain metadata.
PageSize
If set indicates that Query Params contains page size.
WithPagingState
If set indicates that Query Params contains paging state.
WithSerialConsistency
If set indicates that Query Params contains serial consistency.
WithDefaultTimestamp
If set indicates that Query Params contains default timestamp.
WithNamesForValues
If set indicates that Query Params values are named ones.
Trait Implementations§
Source§impl AsByte for QueryFlags
impl AsByte for QueryFlags
Source§impl Clone for QueryFlags
impl Clone for QueryFlags
Source§fn clone(&self) -> QueryFlags
fn clone(&self) -> QueryFlags
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for QueryFlags
impl RefUnwindSafe for QueryFlags
impl Send for QueryFlags
impl Sync for QueryFlags
impl Unpin for QueryFlags
impl UnwindSafe for QueryFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more