Struct scylladb_parse::FunctionReference
source · [−]pub struct FunctionReference {
pub name: FunctionName,
pub args: Option<Vec<CqlType>>,
}Fields
name: FunctionNameargs: Option<Vec<CqlType>>Implementations
Trait Implementations
sourceimpl Clone for FunctionReference
impl Clone for FunctionReference
sourcefn clone(&self) -> FunctionReference
fn clone(&self) -> FunctionReference
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 FunctionReference
impl<'a> CustomToTokens<'a> for FunctionReference
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for FunctionReference
impl Debug for FunctionReference
sourceimpl Display for FunctionReference
impl Display for FunctionReference
sourceimpl From<&str> for FunctionReference
impl From<&str> for FunctionReference
sourceimpl From<KeyspaceQualifiedName> for FunctionReference
impl From<KeyspaceQualifiedName> for FunctionReference
sourcefn from(name: FunctionName) -> Self
fn from(name: FunctionName) -> Self
Converts to this type from the input type.
sourceimpl From<String> for FunctionReference
impl From<String> for FunctionReference
sourceimpl FromStr for FunctionReference
impl FromStr for FunctionReference
sourceimpl Parse for FunctionReference
impl Parse for FunctionReference
type Output = FunctionReference
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<FunctionReference> for FunctionReference
impl PartialEq<FunctionReference> for FunctionReference
sourcefn eq(&self, other: &FunctionReference) -> bool
fn eq(&self, other: &FunctionReference) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FunctionReference) -> bool
fn ne(&self, other: &FunctionReference) -> bool
This method tests for !=.
sourceimpl ToTokens for FunctionReference
impl ToTokens for FunctionReference
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 FunctionReference
impl StructuralEq for FunctionReference
impl StructuralPartialEq for FunctionReference
Auto Trait Implementations
impl RefUnwindSafe for FunctionReference
impl Send for FunctionReference
impl Sync for FunctionReference
impl Unpin for FunctionReference
impl UnwindSafe for FunctionReference
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