pub struct ThreadCommandExecutionItemView {
pub command: String,
pub command_actions: Vec<Value>,
pub cwd: String,
pub status: String,
pub aggregated_output: Option<String>,
pub duration_ms: Option<i64>,
pub exit_code: Option<i32>,
pub process_id: Option<String>,
pub extra: Map<String, Value>,
}Fields§
§command: String§command_actions: Vec<Value>§cwd: String§status: String§aggregated_output: Option<String>§duration_ms: Option<i64>§exit_code: Option<i32>§process_id: Option<String>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for ThreadCommandExecutionItemView
impl Clone for ThreadCommandExecutionItemView
Source§fn clone(&self) -> ThreadCommandExecutionItemView
fn clone(&self) -> ThreadCommandExecutionItemView
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<'de> Deserialize<'de> for ThreadCommandExecutionItemView
impl<'de> Deserialize<'de> for ThreadCommandExecutionItemView
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 ThreadCommandExecutionItemView
impl PartialEq for ThreadCommandExecutionItemView
Source§fn eq(&self, other: &ThreadCommandExecutionItemView) -> bool
fn eq(&self, other: &ThreadCommandExecutionItemView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ThreadCommandExecutionItemView
Auto Trait Implementations§
impl Freeze for ThreadCommandExecutionItemView
impl RefUnwindSafe for ThreadCommandExecutionItemView
impl Send for ThreadCommandExecutionItemView
impl Sync for ThreadCommandExecutionItemView
impl Unpin for ThreadCommandExecutionItemView
impl UnsafeUnpin for ThreadCommandExecutionItemView
impl UnwindSafe for ThreadCommandExecutionItemView
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