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