pub struct DriftPropertyDoc {
pub entity_kind: EntityKind,
pub property: &'static str,
pub compared: &'static str,
pub ignored: &'static str,
pub normalization: &'static str,
pub note: Option<&'static str>,
}Expand description
Documentation for one dialect property comparator used by verify.
Fields§
§entity_kind: EntityKindEntity kind whose modeled form owns this property.
property: &'static strStable property identifier used in drift findings.
compared: &'static strSemantic value compared between replay and inspection.
ignored: &'static strRelated information intentionally excluded from this comparison.
normalization: &'static strCanonicalization applied before comparison.
note: Option<&'static str>Additional limitation users should consider when interpreting drift.
Trait Implementations§
Source§impl Clone for DriftPropertyDoc
impl Clone for DriftPropertyDoc
Source§fn clone(&self) -> DriftPropertyDoc
fn clone(&self) -> DriftPropertyDoc
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 DriftPropertyDoc
impl Debug for DriftPropertyDoc
impl Eq for DriftPropertyDoc
Source§impl PartialEq for DriftPropertyDoc
impl PartialEq for DriftPropertyDoc
impl StructuralPartialEq for DriftPropertyDoc
Auto Trait Implementations§
impl Freeze for DriftPropertyDoc
impl RefUnwindSafe for DriftPropertyDoc
impl Send for DriftPropertyDoc
impl Sync for DriftPropertyDoc
impl Unpin for DriftPropertyDoc
impl UnsafeUnpin for DriftPropertyDoc
impl UnwindSafe for DriftPropertyDoc
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.