Get the primary MEI1 record (most common)
(&self)
| 360 | impl MeSmbiosInfo { |
| 361 | /// Get the primary MEI1 record (most common) |
| 362 | pub fn mei1(&self) -> Option<&MeFwstsRecord> { |
| 363 | self.records |
| 364 | .iter() |
| 365 | .find(|r| r.component == MeComponent::Mei1) |
| 366 | } |
| 367 | |
| 368 | /// Get bootguard status based on ME family |
| 369 | pub fn bootguard_status(&self, family: MeFamily) -> Option<BootguardStatus> { |
no outgoing calls