Type Alias debris_error::Result
source · pub type Result<T> = Result<T, SingleCompileError>;
Expand description
The result type used by most of the core functions
Aliased Type§
enum Result<T> {
Ok(T),
Err(SingleCompileError),
}
pub type Result<T> = Result<T, SingleCompileError>;
The result type used by most of the core functions
enum Result<T> {
Ok(T),
Err(SingleCompileError),
}