//! Workspace types (Spec Section 4.1.4).
useserde::{Deserialize, Serialize};usestd::path::PathBuf;/// Filesystem workspace assigned to one issue identifier.
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructWorkspace{pubpath: PathBuf,
pubworkspace_key: String,
/// Whether the directory was newly created in this call.
pubcreated_now:bool,
}