Currently we have the following line in the docs for RngCore:
also do not implement Default, but instead implement SeedableRng thus allowing use of rand::NewRng (which is automatically implemented)
I think it should be changed to "do not implement Default for pseudorandom generators" or to something similar. For hardware RNGs (e.g. rdrand) and OS RNGs it does not make sense to implement SeedableRng.
Currently we have the following line in the docs for
RngCore:I think it should be changed to "do not implement
Defaultfor pseudorandom generators" or to something similar. For hardware RNGs (e.g.rdrand) and OS RNGs it does not make sense to implementSeedableRng.