Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/dir.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/// Directories for ME generation 2 and 3
///
/// There are multiple kinds of partitioning schemes, and some partitions may
/// contain directories, but directories could also be referenced by other data
/// structures, such as in the case of IFWI, so they are separate here.
//! Directories for ME generation 2 and 3
//!
//! There are multiple kinds of partitioning schemes, and some partitions may
//! contain directories, but directories could also be referenced by other data
//! structures, such as in the case of IFWI, so they are separate here.

pub mod gen2;
pub mod gen3;
pub mod man;
4 changes: 3 additions & 1 deletion src/meta.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! Adapted from me_cleaner, a map of key hashes => metadata (variant + version).
//! Map of key hashes => metadata (variant + version)
//!
//! This has been adapted from me_cleaner.

use std::fmt::Display;

Expand Down
11 changes: 6 additions & 5 deletions src/part.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/// Partitioning for ME generation 2 and 3
///
/// There are multiple kinds of partitioning schemes, and some partitions may
/// contain directories, but directories could also be referenced by other data
/// structures, such as in the case of IFWI, so they are separate.
//! Partitioning for ME generation 2 and 3
//!
//! There are multiple kinds of partitioning schemes, and some partitions may
//! contain directories, but directories could also be referenced by other data
//! structures, such as in the case of IFWI, so they are separate.

pub mod fpt;
pub mod gen2;
pub mod gen3;
Expand Down
4 changes: 4 additions & 0 deletions src/ver.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
//! Common struct for version information
//!
//! This kind of version information occurs in multiple places.

use core::fmt::{self, Display};
use serde::{Deserialize, Serialize};
use zerocopy_derive::{FromBytes, Immutable, IntoBytes};
Expand Down