pub struct DropFunctionStatement {
pub if_exists: bool,
pub func: FunctionReference,
}
Fields§
§if_exists: bool
§func: FunctionReference
Trait Implementations§
Source§impl Clone for DropFunctionStatement
impl Clone for DropFunctionStatement
Source§fn clone(&self) -> DropFunctionStatement
fn clone(&self) -> DropFunctionStatement
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 DropFunctionStatement
impl<'a> CustomToTokens<'a> for DropFunctionStatement
Source§impl Debug for DropFunctionStatement
impl Debug for DropFunctionStatement
Source§impl Display for DropFunctionStatement
impl Display for DropFunctionStatement
Source§impl From<DropFunctionStatement> for Statement
impl From<DropFunctionStatement> for Statement
Source§fn from(v: DropFunctionStatement) -> Self
fn from(v: DropFunctionStatement) -> Self
Converts to this type from the input type.
Source§impl From<DropFunctionStatement> for UserDefinedFunctionStatement
impl From<DropFunctionStatement> for UserDefinedFunctionStatement
Source§fn from(original: DropFunctionStatement) -> UserDefinedFunctionStatement
fn from(original: DropFunctionStatement) -> UserDefinedFunctionStatement
Converts to this type from the input type.
Source§impl FromStr for DropFunctionStatement
impl FromStr for DropFunctionStatement
Source§impl Parse for DropFunctionStatement
impl Parse for DropFunctionStatement
type Output = DropFunctionStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for DropFunctionStatement
impl PartialEq for DropFunctionStatement
Source§impl ToTokens for DropFunctionStatement
impl ToTokens for DropFunctionStatement
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,
Source§impl TryInto<DropFunctionStatement> for Statement
impl TryInto<DropFunctionStatement> for Statement
impl Eq for DropFunctionStatement
impl StructuralPartialEq for DropFunctionStatement
Auto Trait Implementations§
impl Freeze for DropFunctionStatement
impl RefUnwindSafe for DropFunctionStatement
impl Send for DropFunctionStatement
impl Sync for DropFunctionStatement
impl Unpin for DropFunctionStatement
impl UnwindSafe for DropFunctionStatement
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