pub struct MutationResult {
pub data: Value,
pub source: DataSource,
pub fetch_time: SystemTime,
pub mutation_ref: MutationRef,
}Expand description
Result returned from execute_mutation.
Fields§
§data: Value§source: DataSource§fetch_time: SystemTime§mutation_ref: MutationRefTrait Implementations§
Source§impl Clone for MutationResult
impl Clone for MutationResult
Source§fn clone(&self) -> MutationResult
fn clone(&self) -> MutationResult
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 MutationResult
impl !RefUnwindSafe for MutationResult
impl Send for MutationResult
impl Sync for MutationResult
impl Unpin for MutationResult
impl !UnwindSafe for MutationResult
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