pub struct ShellCallOutputDelta {
pub stdout: Option<String>,
pub stderr: Option<String>,
}Available on crate feature
response-types only.Expand description
A delta of stdout/stderr emitted while a shell call was running.
Fields§
§stdout: Option<String>The stdout delta that was emitted.
stderr: Option<String>The stderr delta that was emitted.
Trait Implementations§
Source§impl Clone for ShellCallOutputDelta
impl Clone for ShellCallOutputDelta
Source§fn clone(&self) -> ShellCallOutputDelta
fn clone(&self) -> ShellCallOutputDelta
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 Debug for ShellCallOutputDelta
impl Debug for ShellCallOutputDelta
Source§impl<'de> Deserialize<'de> for ShellCallOutputDelta
impl<'de> Deserialize<'de> for ShellCallOutputDelta
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 PartialEq for ShellCallOutputDelta
impl PartialEq for ShellCallOutputDelta
Source§impl Serialize for ShellCallOutputDelta
impl Serialize for ShellCallOutputDelta
impl StructuralPartialEq for ShellCallOutputDelta
Auto Trait Implementations§
impl Freeze for ShellCallOutputDelta
impl RefUnwindSafe for ShellCallOutputDelta
impl Send for ShellCallOutputDelta
impl Sync for ShellCallOutputDelta
impl Unpin for ShellCallOutputDelta
impl UnsafeUnpin for ShellCallOutputDelta
impl UnwindSafe for ShellCallOutputDelta
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