pub struct GraphMutationResult {
pub attestation: ProofAttestation,
pub partition_changed: bool,
pub affected_partitions: [u32; 2],
}Expand description
Result of a graph mutation.
Fields§
§attestation: ProofAttestationThe attestation for this mutation.
partition_changed: boolWhether the partition structure changed.
affected_partitions: [u32; 2]The affected partition IDs.
Trait Implementations§
Source§impl Clone for GraphMutationResult
impl Clone for GraphMutationResult
Source§fn clone(&self) -> GraphMutationResult
fn clone(&self) -> GraphMutationResult
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 moreSource§impl Debug for GraphMutationResult
impl Debug for GraphMutationResult
Source§impl PartialEq for GraphMutationResult
impl PartialEq for GraphMutationResult
impl StructuralPartialEq for GraphMutationResult
Auto Trait Implementations§
impl Freeze for GraphMutationResult
impl RefUnwindSafe for GraphMutationResult
impl Send for GraphMutationResult
impl Sync for GraphMutationResult
impl Unpin for GraphMutationResult
impl UnsafeUnpin for GraphMutationResult
impl UnwindSafe for GraphMutationResult
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