pub struct RunStepStreamEventThreadRunStepInProgress {
pub data: RunStepObject,
}
Expand description
Occurs when a run step moves to an in_progress
state.
Fields§
§data: RunStepObject
Implementations§
Source§impl RunStepStreamEventThreadRunStepInProgress
impl RunStepStreamEventThreadRunStepInProgress
Sourcepub fn builder() -> RunStepStreamEventThreadRunStepInProgressBuilder<((),)>
pub fn builder() -> RunStepStreamEventThreadRunStepInProgressBuilder<((),)>
Create a builder for building RunStepStreamEventThreadRunStepInProgress
.
On the builder, call .data(...)
to set the values of the fields.
Finally, call .build()
to create the instance of RunStepStreamEventThreadRunStepInProgress
.
Trait Implementations§
Source§impl Clone for RunStepStreamEventThreadRunStepInProgress
impl Clone for RunStepStreamEventThreadRunStepInProgress
Source§fn clone(&self) -> RunStepStreamEventThreadRunStepInProgress
fn clone(&self) -> RunStepStreamEventThreadRunStepInProgress
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<'de> Deserialize<'de> for RunStepStreamEventThreadRunStepInProgress
impl<'de> Deserialize<'de> for RunStepStreamEventThreadRunStepInProgress
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 RunStepStreamEventThreadRunStepInProgress
impl PartialEq for RunStepStreamEventThreadRunStepInProgress
Source§fn eq(&self, other: &RunStepStreamEventThreadRunStepInProgress) -> bool
fn eq(&self, other: &RunStepStreamEventThreadRunStepInProgress) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepStreamEventThreadRunStepInProgress
Auto Trait Implementations§
impl Freeze for RunStepStreamEventThreadRunStepInProgress
impl RefUnwindSafe for RunStepStreamEventThreadRunStepInProgress
impl Send for RunStepStreamEventThreadRunStepInProgress
impl Sync for RunStepStreamEventThreadRunStepInProgress
impl Unpin for RunStepStreamEventThreadRunStepInProgress
impl UnwindSafe for RunStepStreamEventThreadRunStepInProgress
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