pub struct StreamExecuteRequest {
pub command: String,
pub shell: Option<bool>,
pub working_dir: Option<String>,
pub env: Option<HashMap<String, String>>,
pub stdin: Option<String>,
}Expand description
Execute command request with streaming
Fields§
§command: String§shell: Option<bool>§working_dir: Option<String>§env: Option<HashMap<String, String>>§stdin: Option<String>Trait Implementations§
Source§impl Clone for StreamExecuteRequest
impl Clone for StreamExecuteRequest
Source§fn clone(&self) -> StreamExecuteRequest
fn clone(&self) -> StreamExecuteRequest
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 StreamExecuteRequest
impl Debug for StreamExecuteRequest
Source§impl<'de> Deserialize<'de> for StreamExecuteRequest
impl<'de> Deserialize<'de> for StreamExecuteRequest
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 StreamExecuteRequest
impl RefUnwindSafe for StreamExecuteRequest
impl Send for StreamExecuteRequest
impl Sync for StreamExecuteRequest
impl Unpin for StreamExecuteRequest
impl UnsafeUnpin for StreamExecuteRequest
impl UnwindSafe for StreamExecuteRequest
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