123456789101112131415161718192021222324252627282930313233343536373839404142 |
- use crate::{HeaderTagFlag, HeaderTagType};
- use core::mem::size_of;
- /// This tag indicates that payload supports starting without terminating UEFI boot services.
- /// Or in other words: The payload wants to use UEFI boot services.
- #[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
- #[repr(C)]
- pub struct EfiBootServiceHeaderTag {
- typ: HeaderTagType,
- flags: HeaderTagFlag,
- size: u32,
- }
- impl EfiBootServiceHeaderTag {
- pub const fn new(flags: HeaderTagFlag) -> Self {
- EfiBootServiceHeaderTag {
- typ: HeaderTagType::EfiBS,
- flags,
- size: size_of::<Self>() as u32,
- }
- }
- pub const fn typ(&self) -> HeaderTagType {
- self.typ
- }
- pub const fn flags(&self) -> HeaderTagFlag {
- self.flags
- }
- pub const fn size(&self) -> u32 {
- self.size
- }
- }
- #[cfg(test)]
- mod tests {
- use crate::EfiBootServiceHeaderTag;
- #[test]
- fn test_assert_size() {
- assert_eq!(core::mem::size_of::<EfiBootServiceHeaderTag>(), 2 + 2 + 4);
- }
- }
|