pub struct SpendAlertNotificationChannel {
pub type: SpendAlertNotificationChannelType,
pub recipients: Vec<String>,
pub subject_prefix: Option<String>,
}Available on crate feature
administration-types only.Expand description
Email notification settings for a spend alert.
Fields§
§type: SpendAlertNotificationChannelTypeThe notification channel type. Currently only email is supported.
recipients: Vec<String>Email addresses that receive the spend alert notification.
subject_prefix: Option<String>Optional subject prefix for alert emails.
Trait Implementations§
Source§impl Clone for SpendAlertNotificationChannel
impl Clone for SpendAlertNotificationChannel
Source§fn clone(&self) -> SpendAlertNotificationChannel
fn clone(&self) -> SpendAlertNotificationChannel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for SpendAlertNotificationChannel
impl<'de> Deserialize<'de> for SpendAlertNotificationChannel
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 SpendAlertNotificationChannel
Auto Trait Implementations§
impl Freeze for SpendAlertNotificationChannel
impl RefUnwindSafe for SpendAlertNotificationChannel
impl Send for SpendAlertNotificationChannel
impl Sync for SpendAlertNotificationChannel
impl Unpin for SpendAlertNotificationChannel
impl UnsafeUnpin for SpendAlertNotificationChannel
impl UnwindSafe for SpendAlertNotificationChannel
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