Skip to main content

ManifestResult

Type Alias ManifestResult 

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

Result alias for manifest operations.

Aliased Type§

pub enum ManifestResult<T> {
    Ok(T),
    Err(ManifestError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ManifestError)

Contains the error value