pub struct AlterSchema<'a> {
pub alter_schema_span: Span,
pub name: QualifiedName<'a>,
pub action: AlterSchemaAction<'a>,
}Expand description
ALTER SCHEMA statement (PostgreSQL)
Fields§
§alter_schema_span: SpanSpan of “ALTER SCHEMA”
name: QualifiedName<'a>The schema name
action: AlterSchemaAction<'a>The action (RENAME TO, OWNER TO)
Trait Implementations§
Source§impl<'a> Clone for AlterSchema<'a>
impl<'a> Clone for AlterSchema<'a>
Source§fn clone(&self) -> AlterSchema<'a>
fn clone(&self) -> AlterSchema<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for AlterSchema<'a>
impl<'a> Debug for AlterSchema<'a>
Auto Trait Implementations§
impl<'a> Freeze for AlterSchema<'a>
impl<'a> RefUnwindSafe for AlterSchema<'a>
impl<'a> Send for AlterSchema<'a>
impl<'a> Sync for AlterSchema<'a>
impl<'a> Unpin for AlterSchema<'a>
impl<'a> UnsafeUnpin for AlterSchema<'a>
impl<'a> UnwindSafe for AlterSchema<'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