Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
146 B
Rust
Raw Normal View History

#![crate_name = "my_rand"]
#![deny(rustdoc::broken_intra_doc_links)]
2020-06-07 22:11:03 -04:00
pub trait RngCore {}
/// Rng extends [`RngCore`].
pub trait Rng: RngCore {}