pub struct ExtensionChainMatchCondition {
pub cel_expression: Option<String>,
}Expand description
Conditions under which this chain is invoked for a request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cel_expression: Option<String>Required. A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed. For more information, see CEL matcher language reference.
Trait Implementations§
Source§impl Clone for ExtensionChainMatchCondition
impl Clone for ExtensionChainMatchCondition
Source§fn clone(&self) -> ExtensionChainMatchCondition
fn clone(&self) -> ExtensionChainMatchCondition
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 ExtensionChainMatchCondition
impl Debug for ExtensionChainMatchCondition
Source§impl Default for ExtensionChainMatchCondition
impl Default for ExtensionChainMatchCondition
Source§fn default() -> ExtensionChainMatchCondition
fn default() -> ExtensionChainMatchCondition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtensionChainMatchCondition
impl<'de> Deserialize<'de> for ExtensionChainMatchCondition
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
impl Part for ExtensionChainMatchCondition
Auto Trait Implementations§
impl Freeze for ExtensionChainMatchCondition
impl RefUnwindSafe for ExtensionChainMatchCondition
impl Send for ExtensionChainMatchCondition
impl Sync for ExtensionChainMatchCondition
impl Unpin for ExtensionChainMatchCondition
impl UnwindSafe for ExtensionChainMatchCondition
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