Skip to main content

Mountain/IPC/WindServiceAdapters/
Profiles.rs

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