pub struct RunStepDeltaObject {
pub id: String,
pub object: String,
pub delta: RunStepDeltaObject_Delta,
}
Expand description
Represents a run step delta i.e.
Fields§
§id: String
The identifier of the run step, which can be referenced in API endpoints.
object: String
The object type, which is always thread.run.step.delta
.
delta: RunStepDeltaObject_Delta
Trait Implementations§
Source§impl Clone for RunStepDeltaObject
impl Clone for RunStepDeltaObject
Source§fn clone(&self) -> RunStepDeltaObject
fn clone(&self) -> RunStepDeltaObject
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for RunStepDeltaObject
impl RefUnwindSafe for RunStepDeltaObject
impl Send for RunStepDeltaObject
impl Sync for RunStepDeltaObject
impl Unpin for RunStepDeltaObject
impl UnwindSafe for RunStepDeltaObject
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