pub struct RoutineView {
pub routine: Routine,
pub capabilities: Capabilities,
pub next_run_epoch: Option<i64>,
pub latest_run: Option<RunRecord>,
pub recent_runs: Vec<RunRecord>,
}Fields§
§routine: Routine§capabilities: Capabilities§next_run_epoch: Option<i64>§latest_run: Option<RunRecord>§recent_runs: Vec<RunRecord>Trait Implementations§
Source§impl Clone for RoutineView
impl Clone for RoutineView
Source§fn clone(&self) -> RoutineView
fn clone(&self) -> RoutineView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RoutineView
impl Debug for RoutineView
Source§impl<'de> Deserialize<'de> for RoutineView
impl<'de> Deserialize<'de> for RoutineView
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 RoutineView
impl RefUnwindSafe for RoutineView
impl Send for RoutineView
impl Sync for RoutineView
impl Unpin for RoutineView
impl UnsafeUnpin for RoutineView
impl UnwindSafe for RoutineView
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