pub struct ThreadRunStepInProgress {
pub data: Value,
pub event: String,
}Expand description
Occurs when a run step moves to an in_progress state.
Fields§
§data: ValueRepresents a step in execution of a run.
event: StringTrait Implementations§
Source§impl Clone for ThreadRunStepInProgress
impl Clone for ThreadRunStepInProgress
Source§fn clone(&self) -> ThreadRunStepInProgress
fn clone(&self) -> ThreadRunStepInProgress
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 ThreadRunStepInProgress
impl Debug for ThreadRunStepInProgress
Source§impl<'de> Deserialize<'de> for ThreadRunStepInProgress
impl<'de> Deserialize<'de> for ThreadRunStepInProgress
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 ThreadRunStepInProgress
impl RefUnwindSafe for ThreadRunStepInProgress
impl Send for ThreadRunStepInProgress
impl Sync for ThreadRunStepInProgress
impl Unpin for ThreadRunStepInProgress
impl UnsafeUnpin for ThreadRunStepInProgress
impl UnwindSafe for ThreadRunStepInProgress
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