pub struct BackgroundShellSnapshot {
pub shell_id: String,
pub command: String,
pub status: BackgroundShellStatus,
pub exit_code: Option<i32>,
pub log_lines: u64,
pub duration_seconds: u64,
}Fields§
§shell_id: String§command: String§status: BackgroundShellStatus§exit_code: Option<i32>§log_lines: u64§duration_seconds: u64Trait Implementations§
Source§impl Clone for BackgroundShellSnapshot
impl Clone for BackgroundShellSnapshot
Source§fn clone(&self) -> BackgroundShellSnapshot
fn clone(&self) -> BackgroundShellSnapshot
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 BackgroundShellSnapshot
impl Debug for BackgroundShellSnapshot
Source§impl<'de> Deserialize<'de> for BackgroundShellSnapshot
impl<'de> Deserialize<'de> for BackgroundShellSnapshot
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 BackgroundShellSnapshot
impl PartialEq for BackgroundShellSnapshot
Source§impl Serialize for BackgroundShellSnapshot
impl Serialize for BackgroundShellSnapshot
impl Eq for BackgroundShellSnapshot
impl StructuralPartialEq for BackgroundShellSnapshot
Auto Trait Implementations§
impl Freeze for BackgroundShellSnapshot
impl RefUnwindSafe for BackgroundShellSnapshot
impl Send for BackgroundShellSnapshot
impl Sync for BackgroundShellSnapshot
impl Unpin for BackgroundShellSnapshot
impl UnsafeUnpin for BackgroundShellSnapshot
impl UnwindSafe for BackgroundShellSnapshot
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