pub struct ListTopicRulesResponse {
pub next_token: Option<String>,
pub rules: Option<Vec<TopicRuleListItem>>,
}Expand description
The output from the ListTopicRules operation.
Fields§
§next_token: Option<String>A token used to retrieve the next value.
rules: Option<Vec<TopicRuleListItem>>The rules.
Trait Implementations§
Source§impl Clone for ListTopicRulesResponse
impl Clone for ListTopicRulesResponse
Source§fn clone(&self) -> ListTopicRulesResponse
fn clone(&self) -> ListTopicRulesResponse
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 ListTopicRulesResponse
impl Debug for ListTopicRulesResponse
Source§impl Default for ListTopicRulesResponse
impl Default for ListTopicRulesResponse
Source§fn default() -> ListTopicRulesResponse
fn default() -> ListTopicRulesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTopicRulesResponse
impl<'de> Deserialize<'de> for ListTopicRulesResponse
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 ListTopicRulesResponse
impl PartialEq for ListTopicRulesResponse
impl StructuralPartialEq for ListTopicRulesResponse
Auto Trait Implementations§
impl Freeze for ListTopicRulesResponse
impl RefUnwindSafe for ListTopicRulesResponse
impl Send for ListTopicRulesResponse
impl Sync for ListTopicRulesResponse
impl Unpin for ListTopicRulesResponse
impl UnwindSafe for ListTopicRulesResponse
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