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