Enum scylladb_parse::IndexIdentifier
source · [−]pub enum IndexIdentifier {
Column(Name),
Qualified(IndexQualifier, Name),
}Variants
Column(Name)
Qualified(IndexQualifier, Name)
Implementations
Trait Implementations
sourceimpl Clone for IndexIdentifier
impl Clone for IndexIdentifier
sourcefn clone(&self) -> IndexIdentifier
fn clone(&self) -> IndexIdentifier
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 more
sourceimpl<'a> CustomToTokens<'a> for IndexIdentifier
impl<'a> CustomToTokens<'a> for IndexIdentifier
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for IndexIdentifier
impl Debug for IndexIdentifier
sourceimpl Display for IndexIdentifier
impl Display for IndexIdentifier
sourceimpl<N: Into<Name>> From<N> for IndexIdentifier
impl<N: Into<Name>> From<N> for IndexIdentifier
sourceimpl FromStr for IndexIdentifier
impl FromStr for IndexIdentifier
sourceimpl Parse for IndexIdentifier
impl Parse for IndexIdentifier
type Output = IndexIdentifier
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<IndexIdentifier> for IndexIdentifier
impl PartialEq<IndexIdentifier> for IndexIdentifier
sourcefn eq(&self, other: &IndexIdentifier) -> bool
fn eq(&self, other: &IndexIdentifier) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &IndexIdentifier) -> bool
fn ne(&self, other: &IndexIdentifier) -> bool
This method tests for !=.
sourceimpl ToTokens for IndexIdentifier
impl ToTokens for IndexIdentifier
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for IndexIdentifier
impl StructuralEq for IndexIdentifier
impl StructuralPartialEq for IndexIdentifier
Auto Trait Implementations
impl RefUnwindSafe for IndexIdentifier
impl Send for IndexIdentifier
impl Sync for IndexIdentifier
impl Unpin for IndexIdentifier
impl UnwindSafe for IndexIdentifier
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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