pub struct ResumeOutput {
pub workspace: String,
pub checkpoints: Vec<Checkpoint>,
pub cleared: bool,
}Expand description
Resume output.
Fields§
§workspace: StringWorkspace display.
checkpoints: Vec<Checkpoint>Loaded checkpoints.
cleared: boolWhether checkpoints were cleared.
Trait Implementations§
Source§impl Clone for ResumeOutput
impl Clone for ResumeOutput
Source§fn clone(&self) -> ResumeOutput
fn clone(&self) -> ResumeOutput
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 ResumeOutput
impl Debug for ResumeOutput
Auto Trait Implementations§
impl Freeze for ResumeOutput
impl RefUnwindSafe for ResumeOutput
impl Send for ResumeOutput
impl Sync for ResumeOutput
impl Unpin for ResumeOutput
impl UnsafeUnpin for ResumeOutput
impl UnwindSafe for ResumeOutput
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