pub enum MutationOpIR {
Insert {
type_name: String,
assignments: Vec<IRAssignment>,
},
Update {
type_name: String,
assignments: Vec<IRAssignment>,
predicate: IRMutationPredicate,
},
Delete {
type_name: String,
predicate: IRMutationPredicate,
},
}Variants§
Trait Implementations§
Source§impl Clone for MutationOpIR
impl Clone for MutationOpIR
Source§fn clone(&self) -> MutationOpIR
fn clone(&self) -> MutationOpIR
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 moreAuto Trait Implementations§
impl Freeze for MutationOpIR
impl RefUnwindSafe for MutationOpIR
impl Send for MutationOpIR
impl Sync for MutationOpIR
impl Unpin for MutationOpIR
impl UnsafeUnpin for MutationOpIR
impl UnwindSafe for MutationOpIR
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