1 2 3 4 5 6 7 8 9 10 11
use std::path::PathBuf; use indexmap::IndexMap; use serde::{Deserialize, Serialize}; #[derive(Debug, Default, Clone, Serialize, Deserialize)] pub struct Environment { pub name: String, pub values: IndexMap<String, String>, pub path: PathBuf }