pub type RustChangelogResult<T> = Result<T, RustChangelogError>;
Expand description

A result type which binds the RustChangelogError to the error type.

Aliased Type§

enum RustChangelogResult<T> {
    Ok(T),
    Err(RustChangelogError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RustChangelogError)

Contains the error value