pub struct ResponseShellCallCommandDoneStreamingEvent {
pub sequence_number: u64,
pub output_index: u32,
pub command_index: u32,
pub command: String,
}Available on crate feature
response-types only.Expand description
A streaming event that indicated a shell command was completed.
Fields§
§sequence_number: u64The sequence number of the event that was emitted.
output_index: u32The index of the output item that was updated.
command_index: u32The index of the shell command that was completed.
command: StringThe final shell command that was emitted.
Trait Implementations§
Source§impl Clone for ResponseShellCallCommandDoneStreamingEvent
impl Clone for ResponseShellCallCommandDoneStreamingEvent
Source§fn clone(&self) -> ResponseShellCallCommandDoneStreamingEvent
fn clone(&self) -> ResponseShellCallCommandDoneStreamingEvent
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 ResponseShellCallCommandDoneStreamingEvent
impl<'de> Deserialize<'de> for ResponseShellCallCommandDoneStreamingEvent
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 ResponseShellCallCommandDoneStreamingEvent
impl EventType for ResponseShellCallCommandDoneStreamingEvent
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 ResponseShellCallCommandDoneStreamingEvent
Auto Trait Implementations§
impl Freeze for ResponseShellCallCommandDoneStreamingEvent
impl RefUnwindSafe for ResponseShellCallCommandDoneStreamingEvent
impl Send for ResponseShellCallCommandDoneStreamingEvent
impl Sync for ResponseShellCallCommandDoneStreamingEvent
impl Unpin for ResponseShellCallCommandDoneStreamingEvent
impl UnsafeUnpin for ResponseShellCallCommandDoneStreamingEvent
impl UnwindSafe for ResponseShellCallCommandDoneStreamingEvent
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