pub struct RoutineHistoryEvent {
pub routine_id: String,
pub trigger_type: String,
pub run_count: u32,
pub fired_at_ms: u64,
pub status: String,
pub detail: Option<String>,
}Fields§
§routine_id: String§trigger_type: String§run_count: u32§fired_at_ms: u64§status: String§detail: Option<String>Trait Implementations§
Source§impl Clone for RoutineHistoryEvent
impl Clone for RoutineHistoryEvent
Source§fn clone(&self) -> RoutineHistoryEvent
fn clone(&self) -> RoutineHistoryEvent
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 RoutineHistoryEvent
impl Debug for RoutineHistoryEvent
Source§impl<'de> Deserialize<'de> for RoutineHistoryEvent
impl<'de> Deserialize<'de> for RoutineHistoryEvent
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 RoutineHistoryEvent
impl RefUnwindSafe for RoutineHistoryEvent
impl Send for RoutineHistoryEvent
impl Sync for RoutineHistoryEvent
impl Unpin for RoutineHistoryEvent
impl UnsafeUnpin for RoutineHistoryEvent
impl UnwindSafe for RoutineHistoryEvent
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