pub type Error = Error;
enum Error {
Timeout,
Connection(String),
PermissionDenied(String),
Other(String),
}
The request or operation timed out.
An error occurred with the connection. Includes a message for additional context
A permission error occurred. Includes a message for additional context
A catch all for other types of errors