efivar_fix/efi.rs
1mod variable_flags;
2use std::str::FromStr;
3
4pub use variable_flags::VariableFlags;
5
6mod variable;
7pub use variable::Variable;
8
9mod variable_vendor;
10pub use variable_vendor::VariableVendor;
11
12lazy_static::lazy_static! {
13 /// Vendor GUID of the EFI variables according to the specification
14 pub static ref EFI_GUID: uuid::Uuid =
15 uuid::Uuid::from_str("8be4df61-93ca-11d2-aa0d-00e098032b8c").unwrap();
16}