Struct uefi_raw::table::runtime::VariableVendor
source · #[repr(transparent)]pub struct VariableVendor(pub Guid);
Expand description
Variable vendor GUID. This serves as a namespace for variables to avoid naming conflicts between vendors. The UEFI specification defines some special values, and vendors will define their own.
Tuple Fields§
§0: Guid
Implementations§
source§impl VariableVendor
impl VariableVendor
sourcepub const GLOBAL_VARIABLE: VariableVendor = _
pub const GLOBAL_VARIABLE: VariableVendor = _
Used to access global variables.
sourcepub const IMAGE_SECURITY_DATABASE: VariableVendor = _
pub const IMAGE_SECURITY_DATABASE: VariableVendor = _
Used to access EFI signature database variables.
Trait Implementations§
source§impl Clone for VariableVendor
impl Clone for VariableVendor
source§fn clone(&self) -> VariableVendor
fn clone(&self) -> VariableVendor
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for VariableVendor
impl Debug for VariableVendor
source§impl PartialEq for VariableVendor
impl PartialEq for VariableVendor
source§fn eq(&self, other: &VariableVendor) -> bool
fn eq(&self, other: &VariableVendor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.