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