pub struct PendingRun {
pub control_id: String,
pub run_id: String,
pub run_dir: PathBuf,
}Expand description
Pending run pointer: control id, run id, and the run dir.
Fields§
§control_id: String§run_id: String§run_dir: PathBufTrait Implementations§
Source§impl Clone for PendingRun
impl Clone for PendingRun
Source§fn clone(&self) -> PendingRun
fn clone(&self) -> PendingRun
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 PendingRun
impl RefUnwindSafe for PendingRun
impl Send for PendingRun
impl Sync for PendingRun
impl Unpin for PendingRun
impl UnsafeUnpin for PendingRun
impl UnwindSafe for PendingRun
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