pub struct ScheduleTaskArgs {
pub task_id: u64,
pub execution_interval_millis: u64,
pub iterations: u64,
pub instructions: Vec<Instruction>,
}Fields§
§task_id: u64§execution_interval_millis: u64§iterations: u64§instructions: Vec<Instruction>Trait Implementations§
Source§impl Clone for ScheduleTaskArgs
impl Clone for ScheduleTaskArgs
Source§fn clone(&self) -> ScheduleTaskArgs
fn clone(&self) -> ScheduleTaskArgs
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 ScheduleTaskArgs
impl Debug for ScheduleTaskArgs
Source§impl<'de> Deserialize<'de> for ScheduleTaskArgs
impl<'de> Deserialize<'de> for ScheduleTaskArgs
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 ScheduleTaskArgs
impl PartialEq for ScheduleTaskArgs
Source§impl Serialize for ScheduleTaskArgs
impl Serialize for ScheduleTaskArgs
impl Eq for ScheduleTaskArgs
impl StructuralPartialEq for ScheduleTaskArgs
Auto Trait Implementations§
impl Freeze for ScheduleTaskArgs
impl RefUnwindSafe for ScheduleTaskArgs
impl Send for ScheduleTaskArgs
impl Sync for ScheduleTaskArgs
impl Unpin for ScheduleTaskArgs
impl UnwindSafe for ScheduleTaskArgs
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