9
9
//! This module contains the actual entries of the configuration table,
10
10
//! as well as GUIDs for many known vendor tables.
11
11
//!
12
- //! https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table-properties-table
12
+ //! See < https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table-properties-table>.
13
13
14
14
use crate :: { guid, Guid } ;
15
15
use bitflags:: bitflags;
@@ -19,7 +19,7 @@ use core::ffi::c_void;
19
19
///
20
20
/// The UEFI standard guarantees each entry is unique.
21
21
///
22
- /// https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table
22
+ /// See < https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table>.
23
23
#[ derive( Clone , Debug , Eq , PartialEq , Ord , PartialOrd , Hash ) ]
24
24
#[ repr( C ) ]
25
25
pub struct ConfigTableEntry {
@@ -60,13 +60,11 @@ impl ConfigTableEntry {
60
60
pub const MEMORY_STATUS_CODE_RECORD_GUID : Guid = guid ! ( "060cc026-4c0d-4dda-8f41-595fef00a502" ) ;
61
61
62
62
/// Provides additional information about regions within the run-time memory blocks.
63
- ///
64
- /// https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-memory-attributes-table
63
+ /// See <https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-memory-attributes-table>.
65
64
pub const MEMORY_ATTRIBUTES_GUID : Guid = guid ! ( "dcfa911d-26eb-469f-a220-38b7dc461220" ) ;
66
65
67
66
/// Constants used for UEFI signature database variable access.
68
- ///
69
- /// https://uefi.org/specs/UEFI/2.11/32_Secure_Boot_and_Driver_Signing.html#uefi-image-variable-guid-variable-name
67
+ /// See <https://uefi.org/specs/UEFI/2.11/32_Secure_Boot_and_Driver_Signing.html#uefi-image-variable-guid-variable-name>.
70
68
pub const IMAGE_SECURITY_DATABASE_GUID : Guid = guid ! ( "d719b2cb-3d3a-4596-a3bc-dad00e67656f" ) ;
71
69
72
70
/// Table which provides Driver eXecution Environment services.
0 commit comments