We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e8e94 commit c35ab25Copy full SHA for c35ab25
nexus/fm/Cargo.toml
@@ -0,0 +1,12 @@
1
+[package]
2
+name = "nexus-fm"
3
+version = "0.1.0"
4
+edition = "2021"
5
+
6
+[lints]
7
+workspace = true
8
9
+[dependencies]
10
+nexus-types.workspace = true
11
12
+omicron-workspace-hack.workspace = true
nexus/fm/src/lib.rs
@@ -0,0 +1,13 @@
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+//! Fault management
+use nexus_types::fm;
+use nexus_types::inventory;
+pub struct DiagnosisInput<'a> {
+ inventory: &'a inventory::Collection,
+ parent_sitrep: Option<&'a fm::Sitrep>,
13
+}
0 commit comments