pub struct RunOutputDelta {
pub kind: String,
pub command_id: String,
pub run_stream: StreamRef,
pub text: String,
pub extra: Map<String, Value>,
}Expand description
run.output.delta — streamed model/agent output text.
Fields§
§kind: String§command_id: String§run_stream: StreamRef§text: String§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for RunOutputDelta
impl Clone for RunOutputDelta
Source§fn clone(&self) -> RunOutputDelta
fn clone(&self) -> RunOutputDelta
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 RunOutputDelta
impl Debug for RunOutputDelta
Source§impl<'de> Deserialize<'de> for RunOutputDelta
impl<'de> Deserialize<'de> for RunOutputDelta
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 RunOutputDelta
impl PartialEq for RunOutputDelta
Source§impl Serialize for RunOutputDelta
impl Serialize for RunOutputDelta
impl StructuralPartialEq for RunOutputDelta
Auto Trait Implementations§
impl Freeze for RunOutputDelta
impl RefUnwindSafe for RunOutputDelta
impl Send for RunOutputDelta
impl Sync for RunOutputDelta
impl Unpin for RunOutputDelta
impl UnsafeUnpin for RunOutputDelta
impl UnwindSafe for RunOutputDelta
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