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