pub struct AlterSequence {
pub name: TableRef,
pub if_exists: bool,
pub increment: Option<i64>,
pub minvalue: Option<SequenceBound>,
pub maxvalue: Option<SequenceBound>,
pub start: Option<i64>,
pub restart: Option<Option<i64>>,
pub cache: Option<i64>,
pub cycle: Option<bool>,
pub owned_by: Option<Option<TableRef>>,
}Expand description
ALTER SEQUENCE statement
Fields§
§name: TableRef§if_exists: bool§increment: Option<i64>§minvalue: Option<SequenceBound>§maxvalue: Option<SequenceBound>§start: Option<i64>§restart: Option<Option<i64>>§cache: Option<i64>§cycle: Option<bool>§owned_by: Option<Option<TableRef>>Implementations§
Trait Implementations§
Source§impl Clone for AlterSequence
impl Clone for AlterSequence
Source§fn clone(&self) -> AlterSequence
fn clone(&self) -> AlterSequence
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 Debug for AlterSequence
impl Debug for AlterSequence
Source§impl<'de> Deserialize<'de> for AlterSequence
impl<'de> Deserialize<'de> for AlterSequence
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AlterSequence
impl PartialEq for AlterSequence
Source§impl Serialize for AlterSequence
impl Serialize for AlterSequence
impl StructuralPartialEq for AlterSequence
Auto Trait Implementations§
impl Freeze for AlterSequence
impl RefUnwindSafe for AlterSequence
impl Send for AlterSequence
impl Sync for AlterSequence
impl Unpin for AlterSequence
impl UnwindSafe for AlterSequence
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