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