pub type Result<T, E = PersistentError> = Result<T, E>;Expand description
Shorthand Result with error defaulting to PersistentError.
Aliased Type§
pub enum Result<T, E = PersistentError> {
Ok(T),
Err(E),
}pub type Result<T, E = PersistentError> = Result<T, E>;Shorthand Result with error defaulting to PersistentError.
pub enum Result<T, E = PersistentError> {
Ok(T),
Err(E),
}