pub type NixHashResult<V> = Result<V, Error>;
convenience Result type for all nixhash parsing Results.
enum NixHashResult<V> { Ok(V), Err(Error), }
Contains the success value
Contains the error value