pub struct NotEvaluated {
pub rule_id: RuleId,
pub object_id: Option<ObjectId>,
pub reason: NotEvaluatedReason,
pub message: String,
}Expand description
Explicit fail-closed evaluation outcome. This is not a compliance finding.
Fields§
§rule_id: RuleId§object_id: Option<ObjectId>§reason: NotEvaluatedReason§message: StringTrait Implementations§
Source§impl Clone for NotEvaluated
impl Clone for NotEvaluated
Source§fn clone(&self) -> NotEvaluated
fn clone(&self) -> NotEvaluated
Returns a copy 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 NotEvaluated
impl Debug for NotEvaluated
Source§impl<'de> Deserialize<'de> for NotEvaluated
impl<'de> Deserialize<'de> for NotEvaluated
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 Ord for NotEvaluated
impl Ord for NotEvaluated
Source§fn cmp(&self, other: &NotEvaluated) -> Ordering
fn cmp(&self, other: &NotEvaluated) -> Ordering
1.21.0 · 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 NotEvaluated
impl PartialEq for NotEvaluated
Source§impl PartialOrd for NotEvaluated
impl PartialOrd for NotEvaluated
Source§impl Serialize for NotEvaluated
impl Serialize for NotEvaluated
impl Eq for NotEvaluated
impl StructuralPartialEq for NotEvaluated
Auto Trait Implementations§
impl Freeze for NotEvaluated
impl RefUnwindSafe for NotEvaluated
impl Send for NotEvaluated
impl Sync for NotEvaluated
impl Unpin for NotEvaluated
impl UnwindSafe for NotEvaluated
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