pub struct NewProcess {
pub id: Option<String>,
pub task_id: Option<String>,
pub pid: u32,
pub command: String,
pub cwd: Option<String>,
pub log_path: Option<String>,
pub detected_url: Option<String>,
pub status: ProcessStatus,
pub health: Option<String>,
}Fields§
§id: Option<String>§task_id: Option<String>§pid: u32§command: String§cwd: Option<String>§log_path: Option<String>§detected_url: Option<String>§status: ProcessStatus§health: Option<String>Trait Implementations§
Source§impl Clone for NewProcess
impl Clone for NewProcess
Source§fn clone(&self) -> NewProcess
fn clone(&self) -> NewProcess
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 NewProcess
impl Debug for NewProcess
impl Eq for NewProcess
Source§impl PartialEq for NewProcess
impl PartialEq for NewProcess
impl StructuralPartialEq for NewProcess
Auto Trait Implementations§
impl Freeze for NewProcess
impl RefUnwindSafe for NewProcess
impl Send for NewProcess
impl Sync for NewProcess
impl Unpin for NewProcess
impl UnsafeUnpin for NewProcess
impl UnwindSafe for NewProcess
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