scirs2_io/workflow/notificationconfig_traits.rs
1//! # NotificationConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `NotificationConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::NotificationConfig;
12
13impl Default for NotificationConfig {
14 fn default() -> Self {
15 Self {
16 on_success: false,
17 on_failure: true,
18 on_start: false,
19 channels: Vec::new(),
20 }
21 }
22}