pub struct ResumeInput {
pub workspace_path: String,
pub checkpoint: Option<String>,
pub list: bool,
pub clean: bool,
}Expand description
Resume input.
Fields§
§workspace_path: StringWorkspace root.
checkpoint: Option<String>Checkpoint id.
list: boolList checkpoints.
clean: boolClear checkpoints.
Trait Implementations§
Source§impl Clone for ResumeInput
impl Clone for ResumeInput
Source§fn clone(&self) -> ResumeInput
fn clone(&self) -> ResumeInput
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 moreAuto Trait Implementations§
impl Freeze for ResumeInput
impl RefUnwindSafe for ResumeInput
impl Send for ResumeInput
impl Sync for ResumeInput
impl Unpin for ResumeInput
impl UnsafeUnpin for ResumeInput
impl UnwindSafe for ResumeInput
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