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