pub struct TaggedDropFunctionStatement {
pub if_exists: bool,
pub func: Tag<FunctionReference>,
}
Fields§
§if_exists: bool
§func: Tag<FunctionReference>
Trait Implementations§
Source§impl Clone for TaggedDropFunctionStatement
impl Clone for TaggedDropFunctionStatement
Source§fn clone(&self) -> TaggedDropFunctionStatement
fn clone(&self) -> TaggedDropFunctionStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for TaggedDropFunctionStatement
impl<'a> CustomToTokens<'a> for TaggedDropFunctionStatement
Source§impl Debug for TaggedDropFunctionStatement
impl Debug for TaggedDropFunctionStatement
Source§impl From<TaggedDropFunctionStatement> for TaggedStatement
impl From<TaggedDropFunctionStatement> for TaggedStatement
Source§fn from(v: TaggedDropFunctionStatement) -> Self
fn from(v: TaggedDropFunctionStatement) -> Self
Converts to this type from the input type.
Source§impl From<TaggedDropFunctionStatement> for TaggedUserDefinedFunctionStatement
impl From<TaggedDropFunctionStatement> for TaggedUserDefinedFunctionStatement
Source§fn from(
original: TaggedDropFunctionStatement,
) -> TaggedUserDefinedFunctionStatement
fn from( original: TaggedDropFunctionStatement, ) -> TaggedUserDefinedFunctionStatement
Converts to this type from the input type.
Source§impl Parse for TaggedDropFunctionStatement
impl Parse for TaggedDropFunctionStatement
type Output = TaggedDropFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedDropFunctionStatement
impl PartialEq for TaggedDropFunctionStatement
Source§fn eq(&self, other: &TaggedDropFunctionStatement) -> bool
fn eq(&self, other: &TaggedDropFunctionStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedDropFunctionStatement
impl ToTokens for TaggedDropFunctionStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for TaggedDropFunctionStatement
impl StructuralPartialEq for TaggedDropFunctionStatement
Auto Trait Implementations§
impl Freeze for TaggedDropFunctionStatement
impl RefUnwindSafe for TaggedDropFunctionStatement
impl Send for TaggedDropFunctionStatement
impl Sync for TaggedDropFunctionStatement
impl Unpin for TaggedDropFunctionStatement
impl UnwindSafe for TaggedDropFunctionStatement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more