Skip to main content

Result

Type Alias Result 

Source
pub type Result<T> = Result<T, ApfsError>;
Expand description

Audit result — errors are apfs_core read/parse failures surfaced loudly (never swallowed into an empty finding set).

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(ApfsError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ApfsError)

Contains the error value