pub struct RemoveNotificationChannelRequest {
pub channel_id: String,
pub profiling_group_name: String,
}Expand description
The structure representing the RemoveNotificationChannelRequest.
Fields§
§channel_id: StringThe id of the channel that we want to stop receiving notifications.
profiling_group_name: StringThe name of the profiling group we want to change notification configuration for.
Trait Implementations§
Source§impl Clone for RemoveNotificationChannelRequest
impl Clone for RemoveNotificationChannelRequest
Source§fn clone(&self) -> RemoveNotificationChannelRequest
fn clone(&self) -> RemoveNotificationChannelRequest
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 RemoveNotificationChannelRequest
impl Default for RemoveNotificationChannelRequest
Source§fn default() -> RemoveNotificationChannelRequest
fn default() -> RemoveNotificationChannelRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for RemoveNotificationChannelRequest
impl PartialEq for RemoveNotificationChannelRequest
Source§fn eq(&self, other: &RemoveNotificationChannelRequest) -> bool
fn eq(&self, other: &RemoveNotificationChannelRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoveNotificationChannelRequest
Auto Trait Implementations§
impl Freeze for RemoveNotificationChannelRequest
impl RefUnwindSafe for RemoveNotificationChannelRequest
impl Send for RemoveNotificationChannelRequest
impl Sync for RemoveNotificationChannelRequest
impl Unpin for RemoveNotificationChannelRequest
impl UnwindSafe for RemoveNotificationChannelRequest
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