pub struct PolicyRuleResult {
pub rule_name: String,
pub matched: bool,
pub action: PolicyAction,
pub errors: Vec<String>,
}Expand description
Result of individual rule evaluation
Fields§
§rule_name: String§matched: bool§action: PolicyAction§errors: Vec<String>Trait Implementations§
Source§impl Clone for PolicyRuleResult
impl Clone for PolicyRuleResult
Source§fn clone(&self) -> PolicyRuleResult
fn clone(&self) -> PolicyRuleResult
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 PolicyRuleResult
impl Debug for PolicyRuleResult
Source§impl<'de> Deserialize<'de> for PolicyRuleResult
impl<'de> Deserialize<'de> for PolicyRuleResult
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 PolicyRuleResult
impl RefUnwindSafe for PolicyRuleResult
impl Send for PolicyRuleResult
impl Sync for PolicyRuleResult
impl Unpin for PolicyRuleResult
impl UnsafeUnpin for PolicyRuleResult
impl UnwindSafe for PolicyRuleResult
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