1 2 3 4 5 6 7 8 9
use std::path::PathBuf; use serde::Deserialize; use uuid::Uuid; #[derive(Deserialize, Debug, Clone)] pub struct Instance { pub uuid: Uuid, pub path: PathBuf }