pub struct DescribeNotificationSubscriptionsResponse {
pub marker: Option<String>,
pub subscriptions: Option<Vec<Subscription>>,
}
Fields§
§marker: Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
subscriptions: Option<Vec<Subscription>>
The subscriptions.
Trait Implementations§
Source§impl Clone for DescribeNotificationSubscriptionsResponse
impl Clone for DescribeNotificationSubscriptionsResponse
Source§fn clone(&self) -> DescribeNotificationSubscriptionsResponse
fn clone(&self) -> DescribeNotificationSubscriptionsResponse
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 DescribeNotificationSubscriptionsResponse
impl Default for DescribeNotificationSubscriptionsResponse
Source§fn default() -> DescribeNotificationSubscriptionsResponse
fn default() -> DescribeNotificationSubscriptionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeNotificationSubscriptionsResponse
impl<'de> Deserialize<'de> for DescribeNotificationSubscriptionsResponse
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 DescribeNotificationSubscriptionsResponse
impl PartialEq for DescribeNotificationSubscriptionsResponse
Source§fn eq(&self, other: &DescribeNotificationSubscriptionsResponse) -> bool
fn eq(&self, other: &DescribeNotificationSubscriptionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeNotificationSubscriptionsResponse
Auto Trait Implementations§
impl Freeze for DescribeNotificationSubscriptionsResponse
impl RefUnwindSafe for DescribeNotificationSubscriptionsResponse
impl Send for DescribeNotificationSubscriptionsResponse
impl Sync for DescribeNotificationSubscriptionsResponse
impl Unpin for DescribeNotificationSubscriptionsResponse
impl UnwindSafe for DescribeNotificationSubscriptionsResponse
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