Enum cql3_parser::create_index::IndexColumnType
source · [−]pub enum IndexColumnType {
Column(Identifier),
Keys(Identifier),
Entries(Identifier),
Full(Identifier),
}Expand description
The definition of an index column type
Variants
Column(Identifier)
column is a column
Keys(Identifier)
use the keys from the column
Entries(Identifier)
use the entries from the column
Full(Identifier)
use the full column entry.
Trait Implementations
sourceimpl Clone for IndexColumnType
impl Clone for IndexColumnType
sourcefn clone(&self) -> IndexColumnType
fn clone(&self) -> IndexColumnType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for IndexColumnType
impl Debug for IndexColumnType
sourceimpl Display for IndexColumnType
impl Display for IndexColumnType
sourceimpl PartialEq<IndexColumnType> for IndexColumnType
impl PartialEq<IndexColumnType> for IndexColumnType
sourcefn eq(&self, other: &IndexColumnType) -> bool
fn eq(&self, other: &IndexColumnType) -> bool
impl StructuralPartialEq for IndexColumnType
Auto Trait Implementations
impl RefUnwindSafe for IndexColumnType
impl Send for IndexColumnType
impl Sync for IndexColumnType
impl Unpin for IndexColumnType
impl UnwindSafe for IndexColumnType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more