Enum scylladb_parse::SelectorKind 
source · [−]pub enum SelectorKind {
    Column(Name),
    Term(Term),
    Cast(Box<Selector>, CqlType),
    Function(SelectorFunction),
    Count,
}Variants
Column(Name)
Term(Term)
Cast(Box<Selector>, CqlType)
Function(SelectorFunction)
Count
Trait Implementations
sourceimpl Clone for SelectorKind
 
impl Clone for SelectorKind
sourcefn clone(&self) -> SelectorKind
 
fn clone(&self) -> SelectorKind
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 SelectorKind
 
impl<'a> CustomToTokens<'a> for SelectorKind
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for SelectorKind
 
impl Debug for SelectorKind
sourceimpl Display for SelectorKind
 
impl Display for SelectorKind
sourceimpl FromStr for SelectorKind
 
impl FromStr for SelectorKind
sourceimpl Parse for SelectorKind
 
impl Parse for SelectorKind
type Output = SelectorKind
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output> where
    Self: Sized, 
sourceimpl PartialEq<SelectorKind> for SelectorKind
 
impl PartialEq<SelectorKind> for SelectorKind
sourcefn eq(&self, other: &SelectorKind) -> bool
 
fn eq(&self, other: &SelectorKind) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SelectorKind) -> bool
 
fn ne(&self, other: &SelectorKind) -> bool
This method tests for !=.
sourceimpl ToTokens for SelectorKind
 
impl ToTokens for SelectorKind
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 SelectorKind
impl StructuralEq for SelectorKind
impl StructuralPartialEq for SelectorKind
Auto Trait Implementations
impl RefUnwindSafe for SelectorKind
impl Send for SelectorKind
impl Sync for SelectorKind
impl Unpin for SelectorKind
impl UnwindSafe for SelectorKind
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