Enum sql_migration_sim::ast::CteAsMaterialized
source · pub enum CteAsMaterialized {
Materialized,
NotMaterialized,
}Variants§
Materialized
The WITH statement specifies AS MATERIALIZED behavior
NotMaterialized
The WITH statement specifies AS NOT MATERIALIZED behavior
Trait Implementations§
source§impl Clone for CteAsMaterialized
impl Clone for CteAsMaterialized
source§fn clone(&self) -> CteAsMaterialized
fn clone(&self) -> CteAsMaterialized
Returns a copy 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 CteAsMaterialized
impl Debug for CteAsMaterialized
source§impl Display for CteAsMaterialized
impl Display for CteAsMaterialized
source§impl Hash for CteAsMaterialized
impl Hash for CteAsMaterialized
source§impl Ord for CteAsMaterialized
impl Ord for CteAsMaterialized
source§fn cmp(&self, other: &CteAsMaterialized) -> Ordering
fn cmp(&self, other: &CteAsMaterialized) -> 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 CteAsMaterialized
impl PartialEq for CteAsMaterialized
source§fn eq(&self, other: &CteAsMaterialized) -> bool
fn eq(&self, other: &CteAsMaterialized) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for CteAsMaterialized
impl PartialOrd for CteAsMaterialized
source§fn partial_cmp(&self, other: &CteAsMaterialized) -> Option<Ordering>
fn partial_cmp(&self, other: &CteAsMaterialized) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for CteAsMaterialized
impl StructuralPartialEq for CteAsMaterialized
Auto Trait Implementations§
impl Freeze for CteAsMaterialized
impl RefUnwindSafe for CteAsMaterialized
impl Send for CteAsMaterialized
impl Sync for CteAsMaterialized
impl Unpin for CteAsMaterialized
impl UnwindSafe for CteAsMaterialized
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