pub struct ResponseShellCallOutputContentDeltaStreamingEvent {
pub sequence_number: u64,
pub item_id: String,
pub output_index: u32,
pub command_index: u32,
pub delta: ShellCallOutputDelta,
}Available on crate feature
response-types only.Expand description
A streaming event that indicated shell call output was incrementally added.
Fields§
§sequence_number: u64The sequence number of the event that was emitted.
item_id: StringThe ID of the output item that was updated.
output_index: u32The index of the output item that was updated.
command_index: u32The index of the shell command that produced output.
delta: ShellCallOutputDeltaThe stdout/stderr delta that was emitted.
Trait Implementations§
Source§impl Clone for ResponseShellCallOutputContentDeltaStreamingEvent
impl Clone for ResponseShellCallOutputContentDeltaStreamingEvent
Source§fn clone(&self) -> ResponseShellCallOutputContentDeltaStreamingEvent
fn clone(&self) -> ResponseShellCallOutputContentDeltaStreamingEvent
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<'de> Deserialize<'de> for ResponseShellCallOutputContentDeltaStreamingEvent
impl<'de> Deserialize<'de> for ResponseShellCallOutputContentDeltaStreamingEvent
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 EventType for ResponseShellCallOutputContentDeltaStreamingEvent
impl EventType for ResponseShellCallOutputContentDeltaStreamingEvent
Source§fn event_type(&self) -> &'static str
fn event_type(&self) -> &'static str
Available on crate feature
_api only.Returns the event type string (e.g., “batch.cancelled”)
impl StructuralPartialEq for ResponseShellCallOutputContentDeltaStreamingEvent
Auto Trait Implementations§
impl Freeze for ResponseShellCallOutputContentDeltaStreamingEvent
impl RefUnwindSafe for ResponseShellCallOutputContentDeltaStreamingEvent
impl Send for ResponseShellCallOutputContentDeltaStreamingEvent
impl Sync for ResponseShellCallOutputContentDeltaStreamingEvent
impl Unpin for ResponseShellCallOutputContentDeltaStreamingEvent
impl UnsafeUnpin for ResponseShellCallOutputContentDeltaStreamingEvent
impl UnwindSafe for ResponseShellCallOutputContentDeltaStreamingEvent
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