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.
2 parents 65efc9b + 5a26a38 commit 83286d6Copy full SHA for 83286d6
framework_lib/src/chromium_ec/mod.rs
@@ -974,7 +974,7 @@ pub fn print_err<T>(something: EcResult<T>) -> Option<T> {
974
}
975
976
/// Which of the two EC images is currently in-use
977
-#[derive(PartialEq)]
+#[derive(PartialEq, Debug)]
978
pub enum EcCurrentImage {
979
Unknown = 0,
980
RO = 1,
framework_lib/src/smbios.rs
@@ -5,7 +5,8 @@ use std::prelude::v1::*;
5
#[cfg(all(not(feature = "uefi"), not(target_os = "freebsd")))]
6
use std::io::ErrorKind;
7
8
-use crate::util::{Config, Platform};
+use crate::util::Config;
9
+pub use crate::util::Platform;
10
use num_derive::FromPrimitive;
11
use smbioslib::*;
12
#[cfg(feature = "uefi")]
0 commit comments