pub struct AddNotificationChannelsRequest {
pub channels: Vec<Channel>,
pub profiling_group_name: String,
}Expand description
The structure representing the AddNotificationChannelsRequest.
Fields§
§channels: Vec<Channel>One or 2 channels to report to when anomalies are detected.
profiling_group_name: StringThe name of the profiling group that we are setting up notifications for.
Trait Implementations§
Source§impl Clone for AddNotificationChannelsRequest
impl Clone for AddNotificationChannelsRequest
Source§fn clone(&self) -> AddNotificationChannelsRequest
fn clone(&self) -> AddNotificationChannelsRequest
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 AddNotificationChannelsRequest
impl Default for AddNotificationChannelsRequest
Source§fn default() -> AddNotificationChannelsRequest
fn default() -> AddNotificationChannelsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddNotificationChannelsRequest
impl PartialEq for AddNotificationChannelsRequest
Source§fn eq(&self, other: &AddNotificationChannelsRequest) -> bool
fn eq(&self, other: &AddNotificationChannelsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddNotificationChannelsRequest
Auto Trait Implementations§
impl Freeze for AddNotificationChannelsRequest
impl RefUnwindSafe for AddNotificationChannelsRequest
impl Send for AddNotificationChannelsRequest
impl Sync for AddNotificationChannelsRequest
impl Unpin for AddNotificationChannelsRequest
impl UnwindSafe for AddNotificationChannelsRequest
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