pub struct ListNotificationRulesResult {
pub next_token: Option<String>,
pub notification_rules: Option<Vec<NotificationRuleSummary>>,
}
Fields§
§next_token: Option<String>
An enumeration token that can be used in a request to return the next batch of the results.
notification_rules: Option<Vec<NotificationRuleSummary>>
The list of notification rules for the AWS account, by Amazon Resource Name (ARN) and ID.
Trait Implementations§
Source§impl Clone for ListNotificationRulesResult
impl Clone for ListNotificationRulesResult
Source§fn clone(&self) -> ListNotificationRulesResult
fn clone(&self) -> ListNotificationRulesResult
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 ListNotificationRulesResult
impl Debug for ListNotificationRulesResult
Source§impl Default for ListNotificationRulesResult
impl Default for ListNotificationRulesResult
Source§fn default() -> ListNotificationRulesResult
fn default() -> ListNotificationRulesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListNotificationRulesResult
impl<'de> Deserialize<'de> for ListNotificationRulesResult
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
impl StructuralPartialEq for ListNotificationRulesResult
Auto Trait Implementations§
impl Freeze for ListNotificationRulesResult
impl RefUnwindSafe for ListNotificationRulesResult
impl Send for ListNotificationRulesResult
impl Sync for ListNotificationRulesResult
impl Unpin for ListNotificationRulesResult
impl UnwindSafe for ListNotificationRulesResult
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