pub struct TopicRuleListItem {
pub created_at: Option<f64>,
pub rule_arn: Option<String>,
pub rule_disabled: Option<bool>,
pub rule_name: Option<String>,
pub topic_pattern: Option<String>,
}Expand description
Describes a rule.
Fields§
§created_at: Option<f64>The date and time the rule was created.
rule_arn: Option<String>The rule ARN.
rule_disabled: Option<bool>Specifies whether the rule is disabled.
rule_name: Option<String>The name of the rule.
topic_pattern: Option<String>The pattern for the topic names that apply.
Trait Implementations§
Source§impl Clone for TopicRuleListItem
impl Clone for TopicRuleListItem
Source§fn clone(&self) -> TopicRuleListItem
fn clone(&self) -> TopicRuleListItem
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 TopicRuleListItem
impl Debug for TopicRuleListItem
Source§impl Default for TopicRuleListItem
impl Default for TopicRuleListItem
Source§fn default() -> TopicRuleListItem
fn default() -> TopicRuleListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TopicRuleListItem
impl<'de> Deserialize<'de> for TopicRuleListItem
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 TopicRuleListItem
impl PartialEq for TopicRuleListItem
impl StructuralPartialEq for TopicRuleListItem
Auto Trait Implementations§
impl Freeze for TopicRuleListItem
impl RefUnwindSafe for TopicRuleListItem
impl Send for TopicRuleListItem
impl Sync for TopicRuleListItem
impl Unpin for TopicRuleListItem
impl UnwindSafe for TopicRuleListItem
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