pub struct IndexCheckpoint {
pub source_map_id: Vec<u8>,
pub source_version: MapVersionId,
pub index_name: Vec<u8>,
pub generation: u64,
pub definition_fingerprint: Cid,
pub index_map_id: Vec<u8>,
pub index_version: MapVersionId,
}Expand description
Exact hidden-index version selected for one source version.
Fields§
§source_map_id: Vec<u8>§source_version: MapVersionId§index_name: Vec<u8>§generation: u64§definition_fingerprint: Cid§index_map_id: Vec<u8>§index_version: MapVersionIdImplementations§
Trait Implementations§
Source§impl Clone for IndexCheckpoint
impl Clone for IndexCheckpoint
Source§fn clone(&self) -> IndexCheckpoint
fn clone(&self) -> IndexCheckpoint
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 IndexCheckpoint
impl Debug for IndexCheckpoint
impl Eq for IndexCheckpoint
Source§impl PartialEq for IndexCheckpoint
impl PartialEq for IndexCheckpoint
impl StructuralPartialEq for IndexCheckpoint
Auto Trait Implementations§
impl Freeze for IndexCheckpoint
impl RefUnwindSafe for IndexCheckpoint
impl Send for IndexCheckpoint
impl Sync for IndexCheckpoint
impl Unpin for IndexCheckpoint
impl UnsafeUnpin for IndexCheckpoint
impl UnwindSafe for IndexCheckpoint
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more