pub struct AlterSequenceStatement {
pub name: String,
pub if_exists: bool,
pub options: SequenceOptions,
pub rename_to: Option<String>,
}Expand description
v7.17.0 — ALTER SEQUENCE AST node.
Fields§
§name: String§if_exists: bool§options: SequenceOptions§rename_to: Option<String>v7.39 (read01 round 49) — ALTER SEQUENCE old RENAME TO new. Set
instead of options; the two forms are mutually exclusive in PG.
Trait Implementations§
Source§impl Clone for AlterSequenceStatement
impl Clone for AlterSequenceStatement
Source§fn clone(&self) -> AlterSequenceStatement
fn clone(&self) -> AlterSequenceStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlterSequenceStatement
impl Debug for AlterSequenceStatement
Source§impl Display for AlterSequenceStatement
impl Display for AlterSequenceStatement
impl Eq for AlterSequenceStatement
Source§impl PartialEq for AlterSequenceStatement
impl PartialEq for AlterSequenceStatement
impl StructuralPartialEq for AlterSequenceStatement
Auto Trait Implementations§
impl Freeze for AlterSequenceStatement
impl RefUnwindSafe for AlterSequenceStatement
impl Send for AlterSequenceStatement
impl Sync for AlterSequenceStatement
impl Unpin for AlterSequenceStatement
impl UnsafeUnpin for AlterSequenceStatement
impl UnwindSafe for AlterSequenceStatement
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