pub struct PatchedExpressionPolicyRequest {
pub name: Option<String>,
pub execution_logging: Option<bool>,
pub expression: Option<String>,
}
Expand description
PatchedExpressionPolicyRequest : Group Membership Policy Serializer
Fields§
§name: Option<String>
§execution_logging: Option<bool>
When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged.
expression: Option<String>
Implementations§
Source§impl PatchedExpressionPolicyRequest
impl PatchedExpressionPolicyRequest
Sourcepub fn new() -> PatchedExpressionPolicyRequest
pub fn new() -> PatchedExpressionPolicyRequest
Group Membership Policy Serializer
Trait Implementations§
Source§impl Clone for PatchedExpressionPolicyRequest
impl Clone for PatchedExpressionPolicyRequest
Source§fn clone(&self) -> PatchedExpressionPolicyRequest
fn clone(&self) -> PatchedExpressionPolicyRequest
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 Default for PatchedExpressionPolicyRequest
impl Default for PatchedExpressionPolicyRequest
Source§fn default() -> PatchedExpressionPolicyRequest
fn default() -> PatchedExpressionPolicyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedExpressionPolicyRequest
impl<'de> Deserialize<'de> for PatchedExpressionPolicyRequest
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 PatchedExpressionPolicyRequest
impl PartialEq for PatchedExpressionPolicyRequest
Source§fn eq(&self, other: &PatchedExpressionPolicyRequest) -> bool
fn eq(&self, other: &PatchedExpressionPolicyRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PatchedExpressionPolicyRequest
Auto Trait Implementations§
impl Freeze for PatchedExpressionPolicyRequest
impl RefUnwindSafe for PatchedExpressionPolicyRequest
impl Send for PatchedExpressionPolicyRequest
impl Sync for PatchedExpressionPolicyRequest
impl Unpin for PatchedExpressionPolicyRequest
impl UnwindSafe for PatchedExpressionPolicyRequest
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