1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::str::FromStr;

mod variable_flags;
pub use variable_flags::VariableFlags;

mod variable;
pub use variable::Variable;

mod variable_vendor;
pub use variable_vendor::VariableVendor;

lazy_static! {
    /// Vendor GUID of the EFI variables according to the specification
    pub static ref EFI_GUID: uuid::Uuid =
        uuid::Uuid::from_str("8be4df61-93ca-11d2-aa0d-00e098032b8c").unwrap();
}