pub struct ShardDiff {
pub new_files: Vec<String>,
pub removed_files: Vec<String>,
pub moved_files: Vec<(String, u64, u64)>,
pub modified_files: Vec<String>,
}Expand description
Differences between two diagnostics snapshots.
Fields§
§new_files: Vec<String>§removed_files: Vec<String>§moved_files: Vec<(String, u64, u64)>§modified_files: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShardDiff
impl RefUnwindSafe for ShardDiff
impl Send for ShardDiff
impl Sync for ShardDiff
impl Unpin for ShardDiff
impl UnsafeUnpin for ShardDiff
impl UnwindSafe for ShardDiff
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