pub type Result<T, E = Box<dyn Error + Send + Sync>> = Result<T, E>;Expand description
Convenience result alias for secrets and hashing operations.
Use concrete, caller-relevant error types at public boundaries when you need more specific failure handling.
Aliased Type§
pub enum Result<T, E = Box<dyn Error + Send + Sync>> {
Ok(T),
Err(E),
}