pub struct AlterType<'a> {
pub alter_type_span: Span,
pub name: QualifiedName<'a>,
pub action: AlterTypeAction<'a>,
}Expand description
ALTER TYPE statement (PostgreSQL)
Fields§
§alter_type_span: SpanSpan of “ALTER TYPE”
name: QualifiedName<'a>Name of the type (possibly schema-qualified)
action: AlterTypeAction<'a>Action to perform
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AlterType<'a>
impl<'a> RefUnwindSafe for AlterType<'a>
impl<'a> Send for AlterType<'a>
impl<'a> Sync for AlterType<'a>
impl<'a> Unpin for AlterType<'a>
impl<'a> UnsafeUnpin for AlterType<'a>
impl<'a> UnwindSafe for AlterType<'a>
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