DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceAdapters/Profiles.rs
1//! Wind profile-state slice: every known profile, the home
2//! directory, and the active profile descriptor.
3
4use serde::{Deserialize, Serialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct Struct {
8 pub all:Vec<serde_json::Value>,
9
10 pub home:String,
11
12 pub profile:serde_json::Value,
13}