pub struct AlterSequenceStatement {
pub name: String,
pub if_exists: bool,
pub options: SequenceOptions,
}Expand description
v7.17.0 — ALTER SEQUENCE AST node.
Fields§
§name: String§if_exists: bool§options: SequenceOptionsTrait 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
Source§fn eq(&self, other: &AlterSequenceStatement) -> bool
fn eq(&self, other: &AlterSequenceStatement) -> bool
Tests for
self and other values to be equal, and is used by ==.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