pub struct ReminderTask {Show 18 fields
pub id: Option<String>,
pub date_creation: Option<String>,
pub updated_date: Option<String>,
pub last_execution_date: Option<String>,
pub next_date: Option<String>,
pub specific_date: Option<String>,
pub calendar_date: Option<String>,
pub cron_expression: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub disabled: Option<bool>,
pub send_mail: Option<bool>,
pub send_sms: Option<bool>,
pub in_app_notification: Option<bool>,
pub action_key: Option<String>,
pub custom_action_name: Option<String>,
pub persist_result: Option<bool>,
pub action_parameters: Option<Vec<ActionParameter>>,
}Fields§
§id: Option<String>§date_creation: Option<String>§updated_date: Option<String>§last_execution_date: Option<String>§next_date: Option<String>§specific_date: Option<String>§calendar_date: Option<String>§cron_expression: Option<String>§title: Option<String>§description: Option<String>§disabled: Option<bool>§send_mail: Option<bool>§send_sms: Option<bool>§in_app_notification: Option<bool>§action_key: Option<String>§custom_action_name: Option<String>§persist_result: Option<bool>§action_parameters: Option<Vec<ActionParameter>>Implementations§
Source§impl ReminderTask
impl ReminderTask
pub fn new() -> ReminderTask
Trait Implementations§
Source§impl Clone for ReminderTask
impl Clone for ReminderTask
Source§fn clone(&self) -> ReminderTask
fn clone(&self) -> ReminderTask
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 ReminderTask
impl Debug for ReminderTask
Source§impl Default for ReminderTask
impl Default for ReminderTask
Source§fn default() -> ReminderTask
fn default() -> ReminderTask
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReminderTask
impl<'de> Deserialize<'de> for ReminderTask
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 ReminderTask
impl PartialEq for ReminderTask
Source§impl Serialize for ReminderTask
impl Serialize for ReminderTask
impl StructuralPartialEq for ReminderTask
Auto Trait Implementations§
impl Freeze for ReminderTask
impl RefUnwindSafe for ReminderTask
impl Send for ReminderTask
impl Sync for ReminderTask
impl Unpin for ReminderTask
impl UnwindSafe for ReminderTask
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