pub struct ChannelGroupingRule {
pub disjunctive_match_statements: Option<Vec<DisjunctiveMatchStatement>>,
pub kind: Option<String>,
pub name: Option<String>,
}Expand description
Represents a DfaReporting channel grouping rule.
This type is not used in any activity, and only used as part of another schema.
Fields§
§disjunctive_match_statements: Option<Vec<DisjunctiveMatchStatement>>The disjunctive match statements contained within this rule.
kind: Option<String>The kind of resource this is, in this case dfareporting#channelGroupingRule.
name: Option<String>Rule name.
Trait Implementations§
Source§impl Clone for ChannelGroupingRule
impl Clone for ChannelGroupingRule
Source§fn clone(&self) -> ChannelGroupingRule
fn clone(&self) -> ChannelGroupingRule
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 ChannelGroupingRule
impl Debug for ChannelGroupingRule
Source§impl Default for ChannelGroupingRule
impl Default for ChannelGroupingRule
Source§fn default() -> ChannelGroupingRule
fn default() -> ChannelGroupingRule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChannelGroupingRule
impl<'de> Deserialize<'de> for ChannelGroupingRule
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 Serialize for ChannelGroupingRule
impl Serialize for ChannelGroupingRule
impl Part for ChannelGroupingRule
Auto Trait Implementations§
impl Freeze for ChannelGroupingRule
impl RefUnwindSafe for ChannelGroupingRule
impl Send for ChannelGroupingRule
impl Sync for ChannelGroupingRule
impl Unpin for ChannelGroupingRule
impl UnwindSafe for ChannelGroupingRule
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