pub struct CronRunPreview {
pub task: CronTask,
pub run: CronRun,
pub records: Vec<RecordedEvent>,
pub next_before_sequence: Option<u64>,
}Expand description
A read-only page of a scheduled run transcript.
Fields§
§task: CronTask§run: CronRun§records: Vec<RecordedEvent>§next_before_sequence: Option<u64>Trait Implementations§
Source§impl Clone for CronRunPreview
impl Clone for CronRunPreview
Source§fn clone(&self) -> CronRunPreview
fn clone(&self) -> CronRunPreview
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 CronRunPreview
impl Debug for CronRunPreview
Source§impl<'de> Deserialize<'de> for CronRunPreview
impl<'de> Deserialize<'de> for CronRunPreview
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 CronRunPreview
impl PartialEq for CronRunPreview
Source§impl Serialize for CronRunPreview
impl Serialize for CronRunPreview
impl StructuralPartialEq for CronRunPreview
Auto Trait Implementations§
impl Freeze for CronRunPreview
impl RefUnwindSafe for CronRunPreview
impl Send for CronRunPreview
impl Sync for CronRunPreview
impl Unpin for CronRunPreview
impl UnsafeUnpin for CronRunPreview
impl UnwindSafe for CronRunPreview
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