pub struct NewRunningJob {
pub job_id: String,
pub pid: u32,
pub log_path: PathBuf,
pub command: String,
pub connection_id: String,
}Fields§
§job_id: String§pid: u32§log_path: PathBuf§command: String§connection_id: StringTrait Implementations§
Source§impl Clone for NewRunningJob
impl Clone for NewRunningJob
Source§fn clone(&self) -> NewRunningJob
fn clone(&self) -> NewRunningJob
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 moreAuto Trait Implementations§
impl Freeze for NewRunningJob
impl RefUnwindSafe for NewRunningJob
impl Send for NewRunningJob
impl Sync for NewRunningJob
impl Unpin for NewRunningJob
impl UnsafeUnpin for NewRunningJob
impl UnwindSafe for NewRunningJob
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