pub struct TaggedDropUserStatement {
pub if_exists: bool,
pub name: Tag<Name>,
}
Fields§
§if_exists: bool
§name: Tag<Name>
Trait Implementations§
Source§impl Clone for TaggedDropUserStatement
impl Clone for TaggedDropUserStatement
Source§fn clone(&self) -> TaggedDropUserStatement
fn clone(&self) -> TaggedDropUserStatement
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 TaggedDropUserStatement
impl<'a> CustomToTokens<'a> for TaggedDropUserStatement
Source§impl Debug for TaggedDropUserStatement
impl Debug for TaggedDropUserStatement
Source§impl From<TaggedDropUserStatement> for TaggedStatement
impl From<TaggedDropUserStatement> for TaggedStatement
Source§fn from(v: TaggedDropUserStatement) -> Self
fn from(v: TaggedDropUserStatement) -> Self
Converts to this type from the input type.
Source§impl From<TaggedDropUserStatement> for TaggedUserStatement
impl From<TaggedDropUserStatement> for TaggedUserStatement
Source§fn from(original: TaggedDropUserStatement) -> TaggedUserStatement
fn from(original: TaggedDropUserStatement) -> TaggedUserStatement
Converts to this type from the input type.
Source§impl FromStr for TaggedDropUserStatement
impl FromStr for TaggedDropUserStatement
Source§impl Parse for TaggedDropUserStatement
impl Parse for TaggedDropUserStatement
type Output = TaggedDropUserStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedDropUserStatement
impl PartialEq for TaggedDropUserStatement
Source§fn eq(&self, other: &TaggedDropUserStatement) -> bool
fn eq(&self, other: &TaggedDropUserStatement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl ToTokens for TaggedDropUserStatement
impl ToTokens for TaggedDropUserStatement
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 TaggedDropUserStatement
impl StructuralPartialEq for TaggedDropUserStatement
Auto Trait Implementations§
impl Freeze for TaggedDropUserStatement
impl RefUnwindSafe for TaggedDropUserStatement
impl Send for TaggedDropUserStatement
impl Sync for TaggedDropUserStatement
impl Unpin for TaggedDropUserStatement
impl UnwindSafe for TaggedDropUserStatement
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