pub struct AlterType {
pub name: ObjectName,
pub operation: AlterTypeOperation,
}Expand description
An ALTER TYPE statement (Statement::AlterType)
Fields§
§name: ObjectNameName of the type being altered (may be schema-qualified).
operation: AlterTypeOperationThe specific alteration operation to perform.
Trait Implementations§
Source§impl Ord for AlterType
impl Ord for AlterType
Source§impl PartialOrd for AlterType
impl PartialOrd for AlterType
Source§impl VisitMut for AlterType
impl VisitMut for AlterType
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for AlterType
impl StructuralPartialEq for AlterType
Auto Trait Implementations§
impl Freeze for AlterType
impl RefUnwindSafe for AlterType
impl Send for AlterType
impl Sync for AlterType
impl Unpin for AlterType
impl UnsafeUnpin for AlterType
impl UnwindSafe for AlterType
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