pub struct DriftReport {
pub approved_digest: String,
pub current_digest: Option<String>,
pub changed_rules: Vec<String>,
}Expand description
The merge-time drift verdict: the applicable ENFORCED set resolved from the live base differs from the approved pin’s.
Fields§
§approved_digest: StringThe digest pinned at approval.
current_digest: Option<String>The digest resolved from the live base — None when the live base
no longer yields a readable standards manifest (removed or malformed:
the ultimate drift, failed closed).
changed_rules: Vec<String>Id-level change lines (added / removed / changed), stable-sorted.
Trait Implementations§
Source§impl Clone for DriftReport
impl Clone for DriftReport
Source§fn clone(&self) -> DriftReport
fn clone(&self) -> DriftReport
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 DriftReport
impl Debug for DriftReport
impl Eq for DriftReport
Source§impl PartialEq for DriftReport
impl PartialEq for DriftReport
impl StructuralPartialEq for DriftReport
Auto Trait Implementations§
impl Freeze for DriftReport
impl RefUnwindSafe for DriftReport
impl Send for DriftReport
impl Sync for DriftReport
impl Unpin for DriftReport
impl UnsafeUnpin for DriftReport
impl UnwindSafe for DriftReport
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