pub struct DropSequence {
pub name: TableRef,
pub if_exists: bool,
pub cascade: bool,
}Expand description
DROP SEQUENCE statement
Fields§
§name: TableRef§if_exists: bool§cascade: boolImplementations§
Trait Implementations§
Source§impl Clone for DropSequence
impl Clone for DropSequence
Source§fn clone(&self) -> DropSequence
fn clone(&self) -> DropSequence
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 DropSequence
impl Debug for DropSequence
Source§impl<'de> Deserialize<'de> for DropSequence
impl<'de> Deserialize<'de> for DropSequence
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 DropSequence
impl PartialEq for DropSequence
Source§impl Serialize for DropSequence
impl Serialize for DropSequence
impl StructuralPartialEq for DropSequence
Auto Trait Implementations§
impl Freeze for DropSequence
impl RefUnwindSafe for DropSequence
impl Send for DropSequence
impl Sync for DropSequence
impl Unpin for DropSequence
impl UnwindSafe for DropSequence
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