pub struct ResponseShellCallOutputContentDoneStreamingEvent {
pub sequence_number: u64,
pub item_id: String,
pub output_index: u32,
pub command_index: u32,
pub output: Vec<FunctionShellCallOutputContent>,
}Available on crate feature
response-types only.Expand description
A streaming event that indicated shell call output was completed.
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.
output: Vec<FunctionShellCallOutputContent>The output contents emitted for the shell command.
Trait Implementations§
Source§impl Clone for ResponseShellCallOutputContentDoneStreamingEvent
impl Clone for ResponseShellCallOutputContentDoneStreamingEvent
Source§fn clone(&self) -> ResponseShellCallOutputContentDoneStreamingEvent
fn clone(&self) -> ResponseShellCallOutputContentDoneStreamingEvent
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 ResponseShellCallOutputContentDoneStreamingEvent
impl<'de> Deserialize<'de> for ResponseShellCallOutputContentDoneStreamingEvent
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 ResponseShellCallOutputContentDoneStreamingEvent
impl EventType for ResponseShellCallOutputContentDoneStreamingEvent
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 ResponseShellCallOutputContentDoneStreamingEvent
Auto Trait Implementations§
impl Freeze for ResponseShellCallOutputContentDoneStreamingEvent
impl RefUnwindSafe for ResponseShellCallOutputContentDoneStreamingEvent
impl Send for ResponseShellCallOutputContentDoneStreamingEvent
impl Sync for ResponseShellCallOutputContentDoneStreamingEvent
impl Unpin for ResponseShellCallOutputContentDoneStreamingEvent
impl UnsafeUnpin for ResponseShellCallOutputContentDoneStreamingEvent
impl UnwindSafe for ResponseShellCallOutputContentDoneStreamingEvent
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