pub struct ListTopicRulesRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub rule_disabled: Option<bool>,
pub topic: Option<String>,
}Expand description
The input for the ListTopicRules operation.
Fields§
§max_results: Option<i64>The maximum number of results to return.
next_token: Option<String>A token used to retrieve the next value.
rule_disabled: Option<bool>Specifies whether the rule is disabled.
topic: Option<String>The topic.
Trait Implementations§
Source§impl Clone for ListTopicRulesRequest
impl Clone for ListTopicRulesRequest
Source§fn clone(&self) -> ListTopicRulesRequest
fn clone(&self) -> ListTopicRulesRequest
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 ListTopicRulesRequest
impl Debug for ListTopicRulesRequest
Source§impl Default for ListTopicRulesRequest
impl Default for ListTopicRulesRequest
Source§fn default() -> ListTopicRulesRequest
fn default() -> ListTopicRulesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTopicRulesRequest
impl PartialEq for ListTopicRulesRequest
Source§impl Serialize for ListTopicRulesRequest
impl Serialize for ListTopicRulesRequest
impl StructuralPartialEq for ListTopicRulesRequest
Auto Trait Implementations§
impl Freeze for ListTopicRulesRequest
impl RefUnwindSafe for ListTopicRulesRequest
impl Send for ListTopicRulesRequest
impl Sync for ListTopicRulesRequest
impl Unpin for ListTopicRulesRequest
impl UnwindSafe for ListTopicRulesRequest
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