Struct scylladb_parse::FunctionCall
source · [−]pub struct FunctionCall {
pub name: FunctionName,
pub args: Vec<Term>,
}Fields
name: FunctionNameargs: Vec<Term>Implementations
sourceimpl FunctionCall
impl FunctionCall
Trait Implementations
sourceimpl Clone for FunctionCall
impl Clone for FunctionCall
sourcefn clone(&self) -> FunctionCall
fn clone(&self) -> FunctionCall
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 FunctionCall
impl<'a> CustomToTokens<'a> for FunctionCall
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for FunctionCall
impl Debug for FunctionCall
sourceimpl Display for FunctionCall
impl Display for FunctionCall
sourceimpl From<FunctionCall> for Term
impl From<FunctionCall> for Term
sourcefn from(original: FunctionCall) -> Term
fn from(original: FunctionCall) -> Term
Converts to this type from the input type.
sourceimpl FromStr for FunctionCall
impl FromStr for FunctionCall
sourceimpl Hash for FunctionCall
impl Hash for FunctionCall
sourceimpl Ord for FunctionCall
impl Ord for FunctionCall
sourceimpl Parse for FunctionCall
impl Parse for FunctionCall
type Output = FunctionCall
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<FunctionCall> for FunctionCall
impl PartialEq<FunctionCall> for FunctionCall
sourcefn eq(&self, other: &FunctionCall) -> bool
fn eq(&self, other: &FunctionCall) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FunctionCall) -> bool
fn ne(&self, other: &FunctionCall) -> bool
This method tests for !=.
sourceimpl PartialOrd<FunctionCall> for FunctionCall
impl PartialOrd<FunctionCall> for FunctionCall
sourcefn partial_cmp(&self, other: &FunctionCall) -> Option<Ordering>
fn partial_cmp(&self, other: &FunctionCall) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl ToTokens for FunctionCall
impl ToTokens for FunctionCall
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 FunctionCall
impl StructuralEq for FunctionCall
impl StructuralPartialEq for FunctionCall
Auto Trait Implementations
impl RefUnwindSafe for FunctionCall
impl Send for FunctionCall
impl Sync for FunctionCall
impl Unpin for FunctionCall
impl UnwindSafe for FunctionCall
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