use std::path::PathBuf; use serde::Deserialize; use uuid::Uuid; #[derive(Deserialize, Debug, Clone)] pub struct Instance { pub uuid: Uuid, pub path: PathBuf }