pub struct TaggedCreateFunctionStatement {
pub or_replace: bool,
pub if_not_exists: bool,
pub func: Tag<FunctionDeclaration>,
pub on_null_input: Tag<OnNullInput>,
pub return_type: Tag<CqlType>,
pub language: Tag<Name>,
pub body: Tag<LitStr>,
}Fields
or_replace: boolif_not_exists: boolfunc: Tag<FunctionDeclaration>on_null_input: Tag<OnNullInput>return_type: Tag<CqlType>language: Tag<Name>body: Tag<LitStr>Trait Implementations
sourceimpl Clone for TaggedCreateFunctionStatement
impl Clone for TaggedCreateFunctionStatement
sourcefn clone(&self) -> TaggedCreateFunctionStatement
fn clone(&self) -> TaggedCreateFunctionStatement
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 TaggedCreateFunctionStatement
impl<'a> CustomToTokens<'a> for TaggedCreateFunctionStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for TaggedCreateFunctionStatement
impl Debug for TaggedCreateFunctionStatement
sourceimpl From<TaggedCreateFunctionStatement> for TaggedUserDefinedFunctionStatement
impl From<TaggedCreateFunctionStatement> for TaggedUserDefinedFunctionStatement
sourcefn from(
original: TaggedCreateFunctionStatement
) -> TaggedUserDefinedFunctionStatement
fn from(
original: TaggedCreateFunctionStatement
) -> TaggedUserDefinedFunctionStatement
Converts to this type from the input type.
sourceimpl From<TaggedCreateFunctionStatement> for TaggedStatement
impl From<TaggedCreateFunctionStatement> for TaggedStatement
sourcefn from(v: TaggedCreateFunctionStatement) -> Self
fn from(v: TaggedCreateFunctionStatement) -> Self
Converts to this type from the input type.
sourceimpl Parse for TaggedCreateFunctionStatement
impl Parse for TaggedCreateFunctionStatement
type Output = TaggedCreateFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedCreateFunctionStatement> for TaggedCreateFunctionStatement
impl PartialEq<TaggedCreateFunctionStatement> for TaggedCreateFunctionStatement
sourcefn eq(&self, other: &TaggedCreateFunctionStatement) -> bool
fn eq(&self, other: &TaggedCreateFunctionStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedCreateFunctionStatement) -> bool
fn ne(&self, other: &TaggedCreateFunctionStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedCreateFunctionStatement
impl ToTokens for TaggedCreateFunctionStatement
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 TaggedCreateFunctionStatement
impl StructuralEq for TaggedCreateFunctionStatement
impl StructuralPartialEq for TaggedCreateFunctionStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedCreateFunctionStatement
impl Send for TaggedCreateFunctionStatement
impl Sync for TaggedCreateFunctionStatement
impl Unpin for TaggedCreateFunctionStatement
impl UnwindSafe for TaggedCreateFunctionStatement
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