pub struct ChannelPolicyRule {
pub action: String,
pub expression: String,
}Expand description
A policy rule within a channel definition.
Fields§
§action: StringAction kind: “allow”, “deny”, “require”, or “audit”.
expression: StringRaw expression text (e.g. invoke("compliance_check")).
Trait Implementations§
Source§impl Clone for ChannelPolicyRule
impl Clone for ChannelPolicyRule
Source§fn clone(&self) -> ChannelPolicyRule
fn clone(&self) -> ChannelPolicyRule
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 ChannelPolicyRule
impl Debug for ChannelPolicyRule
Source§impl<'de> Deserialize<'de> for ChannelPolicyRule
impl<'de> Deserialize<'de> for ChannelPolicyRule
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 ChannelPolicyRule
impl PartialEq for ChannelPolicyRule
Source§impl Serialize for ChannelPolicyRule
impl Serialize for ChannelPolicyRule
impl StructuralPartialEq for ChannelPolicyRule
Auto Trait Implementations§
impl Freeze for ChannelPolicyRule
impl RefUnwindSafe for ChannelPolicyRule
impl Send for ChannelPolicyRule
impl Sync for ChannelPolicyRule
impl Unpin for ChannelPolicyRule
impl UnsafeUnpin for ChannelPolicyRule
impl UnwindSafe for ChannelPolicyRule
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