pub type Result<T = (), E = Error> = StdResult<T, E>;
Result type with a predefined error type (Error).
Result
Error