pub struct DerivedGraphSnapshotImport {
pub previous_generation: IndexGeneration,
pub published_generation: IndexGeneration,
pub digest: String,
pub content: Vec<DerivedSnapshotContent>,
}Expand description
Result of one normal projection publication from a portable snapshot.
Fields§
§previous_generation: IndexGenerationComplete generation visible before import.
published_generation: IndexGenerationComplete generation published by import.
digest: StringSnapshot content digest that was activated.
content: Vec<DerivedSnapshotContent>Portable derived row inventory.
Trait Implementations§
Source§impl Clone for DerivedGraphSnapshotImport
impl Clone for DerivedGraphSnapshotImport
Source§fn clone(&self) -> DerivedGraphSnapshotImport
fn clone(&self) -> DerivedGraphSnapshotImport
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 DerivedGraphSnapshotImport
impl Debug for DerivedGraphSnapshotImport
impl Eq for DerivedGraphSnapshotImport
Source§impl PartialEq for DerivedGraphSnapshotImport
impl PartialEq for DerivedGraphSnapshotImport
Source§fn eq(&self, other: &DerivedGraphSnapshotImport) -> bool
fn eq(&self, other: &DerivedGraphSnapshotImport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DerivedGraphSnapshotImport
Auto Trait Implementations§
impl Freeze for DerivedGraphSnapshotImport
impl RefUnwindSafe for DerivedGraphSnapshotImport
impl Send for DerivedGraphSnapshotImport
impl Sync for DerivedGraphSnapshotImport
impl Unpin for DerivedGraphSnapshotImport
impl UnsafeUnpin for DerivedGraphSnapshotImport
impl UnwindSafe for DerivedGraphSnapshotImport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.