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