pub struct GraphMutationBatch {
pub entity: String,
pub kind: GraphMutationKind,
pub update_fields: Vec<String>,
pub items: Vec<GraphMutationPlanItem>,
}Fields§
§entity: String§kind: GraphMutationKind§update_fields: Vec<String>§items: Vec<GraphMutationPlanItem>Trait Implementations§
Source§impl Clone for GraphMutationBatch
impl Clone for GraphMutationBatch
Source§fn clone(&self) -> GraphMutationBatch
fn clone(&self) -> GraphMutationBatch
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 GraphMutationBatch
impl Debug for GraphMutationBatch
Source§impl PartialEq for GraphMutationBatch
impl PartialEq for GraphMutationBatch
Source§fn eq(&self, other: &GraphMutationBatch) -> bool
fn eq(&self, other: &GraphMutationBatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphMutationBatch
Auto Trait Implementations§
impl Freeze for GraphMutationBatch
impl RefUnwindSafe for GraphMutationBatch
impl Send for GraphMutationBatch
impl Sync for GraphMutationBatch
impl Unpin for GraphMutationBatch
impl UnsafeUnpin for GraphMutationBatch
impl UnwindSafe for GraphMutationBatch
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