pub type Result<T> = Result<T, NetworkTypeError>;
enum Result<T> { Ok(T), Err(NetworkTypeError), }
Contains the success value
Contains the error value