Skip to main content

ReconstructResult

Type Alias ReconstructResult 

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

Result type for reconstruction operations.

Aliased Type§

pub enum ReconstructResult<T> {
    Ok(T),
    Err(ReconstructionError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReconstructionError)

Contains the error value