Struct cql3_parser::delete::IndexedColumn
source · [−]pub struct IndexedColumn {
pub column: Identifier,
pub idx: Option<String>,
}Expand description
Defines an indexed column. Indexed columns comprise a column name and an optional index into
the column. This is expressed as column[idx]
Fields
column: Identifierthe column name
idx: Option<String>the optional index in to the column
Trait Implementations
sourceimpl Clone for IndexedColumn
impl Clone for IndexedColumn
sourcefn clone(&self) -> IndexedColumn
fn clone(&self) -> IndexedColumn
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 IndexedColumn
impl Debug for IndexedColumn
sourceimpl Display for IndexedColumn
impl Display for IndexedColumn
sourceimpl PartialEq<IndexedColumn> for IndexedColumn
impl PartialEq<IndexedColumn> for IndexedColumn
sourcefn eq(&self, other: &IndexedColumn) -> bool
fn eq(&self, other: &IndexedColumn) -> bool
impl StructuralPartialEq for IndexedColumn
Auto Trait Implementations
impl RefUnwindSafe for IndexedColumn
impl Send for IndexedColumn
impl Sync for IndexedColumn
impl Unpin for IndexedColumn
impl UnwindSafe for IndexedColumn
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