pub struct ReprocessingDecision {
pub outcome: SyncOutcome,
pub reason: &'static str,
}Expand description
Result of delta detection for a dataset.
Fields§
§outcome: SyncOutcomeThe outcome classification for this dataset
reason: &'static strHuman-readable reason for the decision
Implementations§
Trait Implementations§
Source§impl Clone for ReprocessingDecision
impl Clone for ReprocessingDecision
Source§fn clone(&self) -> ReprocessingDecision
fn clone(&self) -> ReprocessingDecision
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 moreSource§impl Debug for ReprocessingDecision
impl Debug for ReprocessingDecision
Source§impl PartialEq for ReprocessingDecision
impl PartialEq for ReprocessingDecision
impl Eq for ReprocessingDecision
impl StructuralPartialEq for ReprocessingDecision
Auto Trait Implementations§
impl Freeze for ReprocessingDecision
impl RefUnwindSafe for ReprocessingDecision
impl Send for ReprocessingDecision
impl Sync for ReprocessingDecision
impl Unpin for ReprocessingDecision
impl UnsafeUnpin for ReprocessingDecision
impl UnwindSafe for ReprocessingDecision
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