pub struct InvariantCheckResult {
pub invariant: Id,
pub result: String,
pub detail: Option<String>,
}Expand description
Result of checking an invariant during gluing.
Fields§
§invariant: IdInvariant identifier.
result: StringStable result label such as passed, failed, skipped, or unknown.
detail: Option<String>Optional diagnostic detail.
Trait Implementations§
Source§impl Clone for InvariantCheckResult
impl Clone for InvariantCheckResult
Source§fn clone(&self) -> InvariantCheckResult
fn clone(&self) -> InvariantCheckResult
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 InvariantCheckResult
impl Debug for InvariantCheckResult
Source§impl<'de> Deserialize<'de> for InvariantCheckResult
impl<'de> Deserialize<'de> for InvariantCheckResult
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
Source§impl Hash for InvariantCheckResult
impl Hash for InvariantCheckResult
Source§impl Ord for InvariantCheckResult
impl Ord for InvariantCheckResult
Source§fn cmp(&self, other: &InvariantCheckResult) -> Ordering
fn cmp(&self, other: &InvariantCheckResult) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InvariantCheckResult
impl PartialEq for InvariantCheckResult
Source§fn eq(&self, other: &InvariantCheckResult) -> bool
fn eq(&self, other: &InvariantCheckResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for InvariantCheckResult
impl PartialOrd for InvariantCheckResult
Source§impl Serialize for InvariantCheckResult
impl Serialize for InvariantCheckResult
impl Eq for InvariantCheckResult
impl StructuralPartialEq for InvariantCheckResult
Auto Trait Implementations§
impl Freeze for InvariantCheckResult
impl RefUnwindSafe for InvariantCheckResult
impl Send for InvariantCheckResult
impl Sync for InvariantCheckResult
impl Unpin for InvariantCheckResult
impl UnsafeUnpin for InvariantCheckResult
impl UnwindSafe for InvariantCheckResult
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