pub struct ExecCommandOutputDeltaEvent {
pub call_id: String,
pub stream: ExecOutputStream,
pub chunk: ByteBuf,
}
Fields§
§call_id: String
Identifier for the ExecCommandBegin that produced this chunk.
stream: ExecOutputStream
Which stream produced this chunk.
chunk: ByteBuf
Raw bytes from the stream (may not be valid UTF-8).
Trait Implementations§
Source§impl Clone for ExecCommandOutputDeltaEvent
impl Clone for ExecCommandOutputDeltaEvent
Source§fn clone(&self) -> ExecCommandOutputDeltaEvent
fn clone(&self) -> ExecCommandOutputDeltaEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 ExecCommandOutputDeltaEvent
impl Debug for ExecCommandOutputDeltaEvent
Source§impl<'de> Deserialize<'de> for ExecCommandOutputDeltaEvent
impl<'de> Deserialize<'de> for ExecCommandOutputDeltaEvent
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
Auto Trait Implementations§
impl Freeze for ExecCommandOutputDeltaEvent
impl RefUnwindSafe for ExecCommandOutputDeltaEvent
impl Send for ExecCommandOutputDeltaEvent
impl Sync for ExecCommandOutputDeltaEvent
impl Unpin for ExecCommandOutputDeltaEvent
impl UnwindSafe for ExecCommandOutputDeltaEvent
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