pub type AppManifestResult<T> = Result<T, AppManifestError>;
Expand description

A result that returns a generic type T in case of success and an AppManifestError` otherwise.

Aliased Type§

enum AppManifestResult<T> {
    Ok(T),
    Err(AppManifestError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AppManifestError)

Contains the error value