pub struct EmailAlertSettings {
pub id: i32,
pub created_dt: String,
pub updated_dt: String,
pub progress_percent: Option<i32>,
pub enabled: Option<bool>,
pub event_types: Option<Vec<EventTypesEnum>>,
pub user: i32,
}Fields§
§id: i32§created_dt: String§updated_dt: String§progress_percent: Option<i32>§enabled: Option<bool>§event_types: Option<Vec<EventTypesEnum>>§user: i32Implementations§
Trait Implementations§
Source§impl Clone for EmailAlertSettings
impl Clone for EmailAlertSettings
Source§fn clone(&self) -> EmailAlertSettings
fn clone(&self) -> EmailAlertSettings
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 EmailAlertSettings
impl Debug for EmailAlertSettings
Source§impl Default for EmailAlertSettings
impl Default for EmailAlertSettings
Source§fn default() -> EmailAlertSettings
fn default() -> EmailAlertSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailAlertSettings
impl<'de> Deserialize<'de> for EmailAlertSettings
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
Source§impl PartialEq for EmailAlertSettings
impl PartialEq for EmailAlertSettings
Source§impl Serialize for EmailAlertSettings
impl Serialize for EmailAlertSettings
impl StructuralPartialEq for EmailAlertSettings
Auto Trait Implementations§
impl Freeze for EmailAlertSettings
impl RefUnwindSafe for EmailAlertSettings
impl Send for EmailAlertSettings
impl Sync for EmailAlertSettings
impl Unpin for EmailAlertSettings
impl UnwindSafe for EmailAlertSettings
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