Skip to content

v0.8.1

Compare
Choose a tag to compare
@mcmah309 mcmah309 released this 05 Dec 18:28
· 9 commits to master since this release

Selective Disables For From

From now accepts arguments to only disable certain From implementations. e.g.

error_set! {
    U = {
        IoError(std::io::Error),
    };
    V = {
        FmtError(std::fmt::Error),
        IoError(std::io::Error),
    };
    #[disable(From(std::io::Error, U))]
    W = V || U;
}

Full Changelog: v0.8...v0.8.1