pub struct CronTaskConfig {
pub name: String,
pub cron_exp: String,
pub path: String,
pub timeout: u32,
}Fields§
§name: String§cron_exp: String§path: String§timeout: u32Trait Implementations§
Source§impl Clone for CronTaskConfig
impl Clone for CronTaskConfig
Source§fn clone(&self) -> CronTaskConfig
fn clone(&self) -> CronTaskConfig
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 CronTaskConfig
impl Debug for CronTaskConfig
Source§impl Default for CronTaskConfig
impl Default for CronTaskConfig
Source§impl Into<CronTaskConfig> for TaskConfigInToml
impl Into<CronTaskConfig> for TaskConfigInToml
Source§fn into(self) -> CronTaskConfig
fn into(self) -> CronTaskConfig
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for CronTaskConfig
impl RefUnwindSafe for CronTaskConfig
impl Send for CronTaskConfig
impl Sync for CronTaskConfig
impl Unpin for CronTaskConfig
impl UnwindSafe for CronTaskConfig
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