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