Skip to content

Commit

Permalink
doc(efivar): Document reader module
Browse files Browse the repository at this point in the history
For the reason the parse module is made pub(crate), see github:rust-lang/rust/issues/83049
  • Loading branch information
iTrooz committed Sep 1, 2023
1 parent d02fd4b commit 32cb649
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion efivar/src/boot/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! This module handles everything related to boot entries
mod boot_entry_iter;
mod parse;
pub(crate) mod parse;
mod reader;
mod writer;

Expand Down
2 changes: 2 additions & 0 deletions efivar/src/boot/reader.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! This module contains functions to read boot entries. Actual boot entry parsing is done in [`crate::boot::parse`]
use byteorder::{LittleEndian, ReadBytesExt};

use crate::{efi::Variable, VarReader};
Expand Down

0 comments on commit 32cb649

Please sign in to comment.