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