pub type RegistryResult<T> = Result<T, Box<RegistryError>>;Expand description
Heap-backed result for the comparatively rich structured error. 对字段较多的结构化错误使用堆分配的返回结果。
Aliased Type§
pub enum RegistryResult<T> {
Ok(T),
Err(Box<RegistryError>),
}