pub enum AlterViewOperation {
SetOptions {
options: Vec<SqlOption>,
},
AlterColumn {
column_name: Ident,
operation: AlterColumnOperation,
},
}Variants§
Trait Implementations§
Source§impl Clone for AlterViewOperation
impl Clone for AlterViewOperation
Source§fn clone(&self) -> AlterViewOperation
fn clone(&self) -> AlterViewOperation
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 AlterViewOperation
impl Debug for AlterViewOperation
Source§impl<'de> Deserialize<'de> for AlterViewOperation
impl<'de> Deserialize<'de> for AlterViewOperation
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 Display for AlterViewOperation
impl Display for AlterViewOperation
Source§impl Hash for AlterViewOperation
impl Hash for AlterViewOperation
Source§impl Ord for AlterViewOperation
impl Ord for AlterViewOperation
Source§fn cmp(&self, other: &AlterViewOperation) -> Ordering
fn cmp(&self, other: &AlterViewOperation) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AlterViewOperation
impl PartialEq for AlterViewOperation
Source§impl PartialOrd for AlterViewOperation
impl PartialOrd for AlterViewOperation
Source§impl Serialize for AlterViewOperation
impl Serialize for AlterViewOperation
Source§impl Visit for AlterViewOperation
impl Visit for AlterViewOperation
Source§impl VisitMut for AlterViewOperation
impl VisitMut for AlterViewOperation
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for AlterViewOperation
impl StructuralPartialEq for AlterViewOperation
Auto Trait Implementations§
impl Freeze for AlterViewOperation
impl RefUnwindSafe for AlterViewOperation
impl Send for AlterViewOperation
impl Sync for AlterViewOperation
impl Unpin for AlterViewOperation
impl UnwindSafe for AlterViewOperation
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