pub type Result<T> = Result<T, CarmenError>;Expand description
The default result type for most fallible operations in the language pipeline.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(CarmenError),
}pub type Result<T> = Result<T, CarmenError>;The default result type for most fallible operations in the language pipeline.
pub enum Result<T> {
Ok(T),
Err(CarmenError),
}