#![expect(missing_docs)]
use mesh_rpc as _;
use prost as _;
include!(concat!(env!("OUT_DIR"), "/inspect.rs"));
#[derive(Debug, Clone, mesh::MeshPayload)]
pub struct InspectResponse2 {
#[mesh(1)]
pub result: inspect::Node,
}
#[derive(Debug, Clone, mesh::MeshPayload)]
pub struct UpdateResponse2 {
#[mesh(1)]
pub new_value: inspect::Value,
}
#[cfg(test)]
mod tests {
use crate::InspectResponse;
use crate::InspectResponse2;
use inspect::Entry;
use inspect::Error;
use inspect::Node;
use inspect::SensitivityLevel;
use inspect::Value;
use inspect::ValueKind;
use mesh::Message;
#[test]
fn test() {
let response2 = InspectResponse2 {
result: Node::Dir(vec![
Entry {
name: "a".to_string(),
node: Node::Unevaluated,
sensitivity: SensitivityLevel::Unspecified,
},
Entry {
name: "b".to_string(),
node: Node::Failed(Error::Update("foo".into())),
sensitivity: SensitivityLevel::Safe,
},
Entry {
name: "c".to_string(),
node: Node::Value(Value::new(ValueKind::Signed(-1))),
sensitivity: SensitivityLevel::Sensitive,
},
Entry {
name: "d".to_string(),
node: Node::Value(Value::new(ValueKind::Unsigned(2))),
sensitivity: SensitivityLevel::Safe,
},
Entry {
name: "e".to_string(),
node: Node::Value(Value::new(ValueKind::Bool(true))),
sensitivity: SensitivityLevel::Sensitive,
},
Entry {
name: "f".to_string(),
node: Node::Value(Value::new(ValueKind::String("foo".to_string()))),
sensitivity: SensitivityLevel::Unspecified,
},
]),
};
let response = Message::new(response2.clone())
.parse::<InspectResponse>()
.unwrap();
assert_eq!(
Message::new(response)
.parse::<InspectResponse2>()
.unwrap()
.result,
response2.result
);
}
}