pub struct IncrementalBuildMetadata {
pub repaired_clean_entity_ids: bool,
pub recomputed_edge_source_ids: Vec<String>,
pub deleted_entity_ids: Vec<String>,
}Expand description
Metadata describing repairs made during an incremental graph build.
Fields§
§repaired_clean_entity_ids: bool§recomputed_edge_source_ids: Vec<String>§deleted_entity_ids: Vec<String>Trait Implementations§
Source§impl Clone for IncrementalBuildMetadata
impl Clone for IncrementalBuildMetadata
Source§fn clone(&self) -> IncrementalBuildMetadata
fn clone(&self) -> IncrementalBuildMetadata
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 IncrementalBuildMetadata
impl Debug for IncrementalBuildMetadata
Source§impl Default for IncrementalBuildMetadata
impl Default for IncrementalBuildMetadata
Source§fn default() -> IncrementalBuildMetadata
fn default() -> IncrementalBuildMetadata
Returns the “default value” for a type. Read more
impl Eq for IncrementalBuildMetadata
Source§impl PartialEq for IncrementalBuildMetadata
impl PartialEq for IncrementalBuildMetadata
Source§fn eq(&self, other: &IncrementalBuildMetadata) -> bool
fn eq(&self, other: &IncrementalBuildMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IncrementalBuildMetadata
Auto Trait Implementations§
impl Freeze for IncrementalBuildMetadata
impl RefUnwindSafe for IncrementalBuildMetadata
impl Send for IncrementalBuildMetadata
impl Sync for IncrementalBuildMetadata
impl Unpin for IncrementalBuildMetadata
impl UnsafeUnpin for IncrementalBuildMetadata
impl UnwindSafe for IncrementalBuildMetadata
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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