pub struct CompiledPolicyRule {
pub trigger: CompiledTrigger,
pub actions: Vec<CompiledAction>,
}Expand description
Compiled policy rule.
Fields§
§trigger: CompiledTrigger§actions: Vec<CompiledAction>Trait Implementations§
Source§impl Clone for CompiledPolicyRule
impl Clone for CompiledPolicyRule
Source§fn clone(&self) -> CompiledPolicyRule
fn clone(&self) -> CompiledPolicyRule
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 CompiledPolicyRule
impl Debug for CompiledPolicyRule
Source§impl<'de> Deserialize<'de> for CompiledPolicyRule
impl<'de> Deserialize<'de> for CompiledPolicyRule
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 PartialEq for CompiledPolicyRule
impl PartialEq for CompiledPolicyRule
Source§impl Serialize for CompiledPolicyRule
impl Serialize for CompiledPolicyRule
impl StructuralPartialEq for CompiledPolicyRule
Auto Trait Implementations§
impl Freeze for CompiledPolicyRule
impl RefUnwindSafe for CompiledPolicyRule
impl Send for CompiledPolicyRule
impl Sync for CompiledPolicyRule
impl Unpin for CompiledPolicyRule
impl UnwindSafe for CompiledPolicyRule
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