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