Skip to main content

csm_rs/node/
types.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize)]
4pub struct NodeDetails {
5  pub xname: String,
6  pub nid: String,
7  pub hsm: String,
8  pub power_status: String,
9  pub desired_configuration: String,
10  pub configuration_status: String,
11  pub enabled: String,
12  pub error_count: String,
13  pub boot_image_id: String,
14  pub boot_configuration: String,
15  pub kernel_params: String,
16}