pub struct ResponseShellCallCommandDeltaStreamingEvent {
pub sequence_number: u64,
pub output_index: u32,
pub command_index: u32,
pub delta: String,
pub obfuscation: Option<String>,
}Available on crate feature
response-types only.Expand description
A streaming event that indicated a shell command was incrementally updated.
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 updated.
delta: StringThe shell command delta that was appended.
obfuscation: Option<String>An obfuscation string that was added to pad the event payload.
Trait Implementations§
Source§impl Clone for ResponseShellCallCommandDeltaStreamingEvent
impl Clone for ResponseShellCallCommandDeltaStreamingEvent
Source§fn clone(&self) -> ResponseShellCallCommandDeltaStreamingEvent
fn clone(&self) -> ResponseShellCallCommandDeltaStreamingEvent
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 ResponseShellCallCommandDeltaStreamingEvent
impl<'de> Deserialize<'de> for ResponseShellCallCommandDeltaStreamingEvent
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 ResponseShellCallCommandDeltaStreamingEvent
impl EventType for ResponseShellCallCommandDeltaStreamingEvent
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 ResponseShellCallCommandDeltaStreamingEvent
Auto Trait Implementations§
impl Freeze for ResponseShellCallCommandDeltaStreamingEvent
impl RefUnwindSafe for ResponseShellCallCommandDeltaStreamingEvent
impl Send for ResponseShellCallCommandDeltaStreamingEvent
impl Sync for ResponseShellCallCommandDeltaStreamingEvent
impl Unpin for ResponseShellCallCommandDeltaStreamingEvent
impl UnsafeUnpin for ResponseShellCallCommandDeltaStreamingEvent
impl UnwindSafe for ResponseShellCallCommandDeltaStreamingEvent
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