Currently we only have Result which contains both Success and all the error variants, it would be nice if we could also have an Error enum that contains every error variant and withholds the single Success variant, and also a From implemention on our Result to an actual rust core::result::Result<(), Error> that allows us to easily manage XR function results.
Is this something you would be willing to accept a PR for?
Currently we only have
Resultwhich contains bothSuccessand all the error variants, it would be nice if we could also have anErrorenum that contains every error variant and withholds the singleSuccessvariant, and also aFromimplemention on ourResultto an actual rustcore::result::Result<(), Error>that allows us to easily manage XR function results.Is this something you would be willing to accept a PR for?