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