Type Alias chandeliers_err::error::Result
source · pub type Result<T> = Result<T, ()>;Expand description
Our errors are collected in the Acc error accumulator,
so all results contain () only !
Aliased Type§
enum Result<T> {
Ok(T),
Err(()),
}