pub struct AlterOperatorClass<'a> {
pub alter_operator_class_span: Span,
pub name: QualifiedName<'a>,
pub index_method: UsingIndexMethod,
pub action: AlterOperatorClassAction<'a>,
}Expand description
ALTER OPERATOR CLASS statement (PostgreSQL)
Fields§
§alter_operator_class_span: SpanSpan of “ALTER OPERATOR CLASS”
name: QualifiedName<'a>The operator class name
index_method: UsingIndexMethodThe index method (btree, hash, gist, gin)
action: AlterOperatorClassAction<'a>The action (RENAME TO, OWNER TO, SET SCHEMA)
Trait Implementations§
Source§impl<'a> Clone for AlterOperatorClass<'a>
impl<'a> Clone for AlterOperatorClass<'a>
Source§fn clone(&self) -> AlterOperatorClass<'a>
fn clone(&self) -> AlterOperatorClass<'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 AlterOperatorClass<'a>
impl<'a> Debug for AlterOperatorClass<'a>
Auto Trait Implementations§
impl<'a> Freeze for AlterOperatorClass<'a>
impl<'a> RefUnwindSafe for AlterOperatorClass<'a>
impl<'a> Send for AlterOperatorClass<'a>
impl<'a> Sync for AlterOperatorClass<'a>
impl<'a> Unpin for AlterOperatorClass<'a>
impl<'a> UnsafeUnpin for AlterOperatorClass<'a>
impl<'a> UnwindSafe for AlterOperatorClass<'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