pub type Result<T> = Result<T, ApfsError>;
Audit result — errors are apfs_core read/parse failures surfaced loudly (never swallowed into an empty finding set).
apfs_core
pub enum Result<T> { Ok(T), Err(ApfsError), }
Contains the success value
Contains the error value