autotrait
Sometimes you want to do dynamic dispatch. First you'd have to define a trait:
And then implement it on something:
;
We're repeating ourselves a bunch when doing that! What if we could just do:
;
That way we wouldn't even have to define the trait!
Well, that's what this crates does.