http_type/http_url/error/
enum.rs

1use crate::*;
2
3/// Represents different types of errors that can occur in the application.
4///
5/// The `HttpUrlError` enum defines various error types related to HTTP requests, network connections, and TLS operations.
6/// Each variant corresponds to a specific error that can occur during the execution of the application.
7///
8/// # Variants
9/// - `InvalidUrl`: Indicates that the provided URL is invalid.
10#[derive(Debug, Clone, PartialEq, Eq)]
11pub enum HttpUrlError {
12    InvalidUrl,
13}