pub struct CoherenceViolation {
pub violation_type: CoherenceCheckType,
pub detected: i64,
pub severity: f64,
pub evidence: Vec<String>,
pub possible_causes: Vec<String>,
pub resolution: Option<String>,
pub description: String,
}Expand description
A detected coherence violation.
Fields§
§violation_type: CoherenceCheckType§detected: i64§severity: f64§evidence: Vec<String>§possible_causes: Vec<String>§resolution: Option<String>§description: StringTrait Implementations§
Source§impl Clone for CoherenceViolation
impl Clone for CoherenceViolation
Source§fn clone(&self) -> CoherenceViolation
fn clone(&self) -> CoherenceViolation
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 CoherenceViolation
impl Debug for CoherenceViolation
Source§impl<'de> Deserialize<'de> for CoherenceViolation
impl<'de> Deserialize<'de> for CoherenceViolation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CoherenceViolation
impl RefUnwindSafe for CoherenceViolation
impl Send for CoherenceViolation
impl Sync for CoherenceViolation
impl Unpin for CoherenceViolation
impl UnsafeUnpin for CoherenceViolation
impl UnwindSafe for CoherenceViolation
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