pub struct ShardIntegrityIssue {
pub shard_name: String,
pub problem: String,
}Expand description
A shard integrity problem found during validation.
Fields§
§shard_name: StringName of the shard file (e.g. "2026-01.events").
problem: StringHuman-readable description of the problem.
Trait Implementations§
Source§impl Clone for ShardIntegrityIssue
impl Clone for ShardIntegrityIssue
Source§fn clone(&self) -> ShardIntegrityIssue
fn clone(&self) -> ShardIntegrityIssue
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 moreAuto Trait Implementations§
impl Freeze for ShardIntegrityIssue
impl RefUnwindSafe for ShardIntegrityIssue
impl Send for ShardIntegrityIssue
impl Sync for ShardIntegrityIssue
impl Unpin for ShardIntegrityIssue
impl UnsafeUnpin for ShardIntegrityIssue
impl UnwindSafe for ShardIntegrityIssue
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