pub type NetworkResult<T> = Result<T, Box<dyn Error>>;
This type represent the result of a network operation
enum NetworkResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value