pub struct NotificationConfiguration {
pub channels: Option<Vec<Channel>>,
}Expand description
The configuration for notifications stored for each profiling group. This includes up to to two channels and a list of event publishers associated with each channel.
Fields§
§channels: Option<Vec<Channel>>List of up to two channels to be used for sending notifications for events detected from the application profile.
Trait Implementations§
Source§impl Clone for NotificationConfiguration
impl Clone for NotificationConfiguration
Source§fn clone(&self) -> NotificationConfiguration
fn clone(&self) -> NotificationConfiguration
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 NotificationConfiguration
impl Debug for NotificationConfiguration
Source§impl Default for NotificationConfiguration
impl Default for NotificationConfiguration
Source§fn default() -> NotificationConfiguration
fn default() -> NotificationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationConfiguration
impl<'de> Deserialize<'de> for NotificationConfiguration
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 NotificationConfiguration
Auto Trait Implementations§
impl Freeze for NotificationConfiguration
impl RefUnwindSafe for NotificationConfiguration
impl Send for NotificationConfiguration
impl Sync for NotificationConfiguration
impl Unpin for NotificationConfiguration
impl UnwindSafe for NotificationConfiguration
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