pub enum NotificationProvider {
Email {
email_address: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for NotificationProvider
impl Clone for NotificationProvider
Source§fn clone(&self) -> NotificationProvider
fn clone(&self) -> NotificationProvider
Returns a copy 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 NotificationProvider
impl Debug for NotificationProvider
Source§impl<'de> Deserialize<'de> for NotificationProvider
impl<'de> Deserialize<'de> for NotificationProvider
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
Auto Trait Implementations§
impl Freeze for NotificationProvider
impl RefUnwindSafe for NotificationProvider
impl Send for NotificationProvider
impl Sync for NotificationProvider
impl Unpin for NotificationProvider
impl UnwindSafe for NotificationProvider
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