pub struct StepEndEvent {
pub call_id: String,
pub step: Arc<StepResult>,
}Expand description
A step finished.
Fields§
§call_id: StringCall id.
step: Arc<StepResult>The step.
Trait Implementations§
Source§impl Clone for StepEndEvent
impl Clone for StepEndEvent
Source§fn clone(&self) -> StepEndEvent
fn clone(&self) -> StepEndEvent
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 moreAuto Trait Implementations§
impl Freeze for StepEndEvent
impl RefUnwindSafe for StepEndEvent
impl Send for StepEndEvent
impl Sync for StepEndEvent
impl Unpin for StepEndEvent
impl UnsafeUnpin for StepEndEvent
impl UnwindSafe for StepEndEvent
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