pub type RustChangelogResult<T> = Result<T, RustChangelogError>;
Expand description
A result type which binds the RustChangelogError
to the error type.
Aliased Type§
pub enum RustChangelogResult<T> {
Ok(T),
Err(RustChangelogError),
}
pub type RustChangelogResult<T> = Result<T, RustChangelogError>;
A result type which binds the RustChangelogError
to the error type.
pub enum RustChangelogResult<T> {
Ok(T),
Err(RustChangelogError),
}