pub struct ListTopicRuleDestinationsResponse {
pub destination_summaries: Option<Vec<TopicRuleDestinationSummary>>,
pub next_token: Option<String>,
}Fields§
§destination_summaries: Option<Vec<TopicRuleDestinationSummary>>Information about a topic rule destination.
next_token: Option<String>The token to retrieve the next set of results.
Trait Implementations§
Source§impl Clone for ListTopicRuleDestinationsResponse
impl Clone for ListTopicRuleDestinationsResponse
Source§fn clone(&self) -> ListTopicRuleDestinationsResponse
fn clone(&self) -> ListTopicRuleDestinationsResponse
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 Default for ListTopicRuleDestinationsResponse
impl Default for ListTopicRuleDestinationsResponse
Source§fn default() -> ListTopicRuleDestinationsResponse
fn default() -> ListTopicRuleDestinationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTopicRuleDestinationsResponse
impl<'de> Deserialize<'de> for ListTopicRuleDestinationsResponse
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 ListTopicRuleDestinationsResponse
impl PartialEq for ListTopicRuleDestinationsResponse
Source§fn eq(&self, other: &ListTopicRuleDestinationsResponse) -> bool
fn eq(&self, other: &ListTopicRuleDestinationsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTopicRuleDestinationsResponse
Auto Trait Implementations§
impl Freeze for ListTopicRuleDestinationsResponse
impl RefUnwindSafe for ListTopicRuleDestinationsResponse
impl Send for ListTopicRuleDestinationsResponse
impl Sync for ListTopicRuleDestinationsResponse
impl Unpin for ListTopicRuleDestinationsResponse
impl UnwindSafe for ListTopicRuleDestinationsResponse
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