pub enum MergeWhenPlan {
UpdateMatched {
condition: Option<ScalarExpr>,
assignments: Vec<AssignmentPlan>,
},
DeleteMatched {
condition: Option<ScalarExpr>,
},
UpdateNotMatchedBySource {
condition: Option<ScalarExpr>,
assignments: Vec<AssignmentPlan>,
},
DeleteNotMatchedBySource {
condition: Option<ScalarExpr>,
},
InsertNotMatched {
condition: Option<ScalarExpr>,
columns: Vec<String>,
values: Vec<ScalarExpr>,
},
NothingMatched {
condition: Option<ScalarExpr>,
},
NothingNotMatched {
condition: Option<ScalarExpr>,
},
NothingNotMatchedBySource {
condition: Option<ScalarExpr>,
},
}Variants§
UpdateMatched
DeleteMatched
Fields
§
condition: Option<ScalarExpr>UpdateNotMatchedBySource
DeleteNotMatchedBySource
Fields
§
condition: Option<ScalarExpr>InsertNotMatched
NothingMatched
Fields
§
condition: Option<ScalarExpr>NothingNotMatched
Fields
§
condition: Option<ScalarExpr>NothingNotMatchedBySource
Fields
§
condition: Option<ScalarExpr>Trait Implementations§
Source§impl Clone for MergeWhenPlan
impl Clone for MergeWhenPlan
Source§fn clone(&self) -> MergeWhenPlan
fn clone(&self) -> MergeWhenPlan
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 MergeWhenPlan
impl Debug for MergeWhenPlan
Source§impl<'de> Deserialize<'de> for MergeWhenPlan
impl<'de> Deserialize<'de> for MergeWhenPlan
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
Auto Trait Implementations§
impl Freeze for MergeWhenPlan
impl RefUnwindSafe for MergeWhenPlan
impl Send for MergeWhenPlan
impl Sync for MergeWhenPlan
impl Unpin for MergeWhenPlan
impl UnsafeUnpin for MergeWhenPlan
impl UnwindSafe for MergeWhenPlan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more