pub struct ResumeJsonOutput {
pub schema_version: String,
pub spec_id: String,
pub phase: String,
pub current_inputs: CurrentInputs,
pub next_steps: String,
}Expand description
Resume output structure for JSON emission (schema resume-json.v1)
Used by xchecker resume --json command for Claude Code integration
Per FR-Claude Code-CLI (Requirements 4.1.3): Returns resume context without full packet/artifacts
Fields§
§schema_version: StringSchema version for this resume format (e.g., “resume-json.v1”)
spec_id: StringUnique identifier for the spec
phase: StringPhase to resume from
current_inputs: CurrentInputsCurrent inputs available for the phase (artifact names, not full contents)
next_steps: StringNext steps hint for the user/agent
Trait Implementations§
Source§impl Clone for ResumeJsonOutput
impl Clone for ResumeJsonOutput
Source§fn clone(&self) -> ResumeJsonOutput
fn clone(&self) -> ResumeJsonOutput
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 ResumeJsonOutput
impl Debug for ResumeJsonOutput
Source§impl<'de> Deserialize<'de> for ResumeJsonOutput
impl<'de> Deserialize<'de> for ResumeJsonOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResumeJsonOutput
impl RefUnwindSafe for ResumeJsonOutput
impl Send for ResumeJsonOutput
impl Sync for ResumeJsonOutput
impl Unpin for ResumeJsonOutput
impl UnsafeUnpin for ResumeJsonOutput
impl UnwindSafe for ResumeJsonOutput
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