Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Commit bd90aaa

Browse files
committed
log RandomState
1 parent f7ec5e4 commit bd90aaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/random_state.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,19 +206,19 @@ cfg_if::cfg_if! {
206206
/// |`with_seed` | Fixed per process |`u64` + static random number|
207207
/// |`with_seeds` | Fixed |`u64` x 4|
208208
///
209-
#[derive(Clone)]
209+
#[derive(Debug, Clone)]
210210
pub struct RandomState {
211211
pub(crate) k0: u64,
212212
pub(crate) k1: u64,
213213
pub(crate) k2: u64,
214214
pub(crate) k3: u64,
215215
}
216216

217-
impl fmt::Debug for RandomState {
217+
/*impl fmt::Debug for RandomState {
218218
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
219219
f.pad("RandomState { .. }")
220220
}
221-
}
221+
}*/
222222

223223
impl RandomState {
224224
/// Create a new `RandomState` `BuildHasher` using random keys.

0 commit comments

Comments
 (0)