pub struct DisjunctiveMatchStatement {
pub event_filters: Option<Vec<EventFilter>>,
pub kind: Option<String>,
}Expand description
Represents a Disjunctive Match Statement resource, which is a conjunction (and) of disjunctive (or) boolean statements.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_filters: Option<Vec<EventFilter>>The event filters contained within this disjunctive match statement.
kind: Option<String>The kind of resource this is, in this case dfareporting#disjunctiveMatchStatement.
Trait Implementations§
Source§impl Clone for DisjunctiveMatchStatement
impl Clone for DisjunctiveMatchStatement
Source§fn clone(&self) -> DisjunctiveMatchStatement
fn clone(&self) -> DisjunctiveMatchStatement
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 DisjunctiveMatchStatement
impl Debug for DisjunctiveMatchStatement
Source§impl Default for DisjunctiveMatchStatement
impl Default for DisjunctiveMatchStatement
Source§fn default() -> DisjunctiveMatchStatement
fn default() -> DisjunctiveMatchStatement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DisjunctiveMatchStatement
impl<'de> Deserialize<'de> for DisjunctiveMatchStatement
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 DisjunctiveMatchStatement
Auto Trait Implementations§
impl Freeze for DisjunctiveMatchStatement
impl RefUnwindSafe for DisjunctiveMatchStatement
impl Send for DisjunctiveMatchStatement
impl Sync for DisjunctiveMatchStatement
impl Unpin for DisjunctiveMatchStatement
impl UnwindSafe for DisjunctiveMatchStatement
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