Expand description
Functions for accessing fields of the system table.
Some of these functions use a callback argument rather than returning a reference to the field directly. This pattern is used because some fields are allowed to change, and so a static lifetime cannot be used.
Some functions can only be called while boot services are active, and will panic otherwise. See each function’s documentation for details.
Functions§
- firmware_
revision - Get the firmware revision.
- firmware_
vendor - Get the firmware vendor string.
- uefi_
revision - Get the revision of the system table, which is defined to be the revision of the UEFI specification implemented by the firmware.
- with_
config_ table - Call
fwith a slice ofConfigTableEntry. Each entry provides access to a vendor-specific table. - with_
stderr - Call
fwith theOutputprotocol attached to stderr. - with_
stdin - Call
fwith theInputprotocol attached to stdin. - with_
stdout - Call
fwith theOutputprotocol attached to stdout.