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