10 lines
205 B
Rust
10 lines
205 B
Rust
|
use rand::{distributions::Alphanumeric, Rng}; // 0.8
|
||
|
|
||
|
pub fn randstr() -> String {
|
||
|
rand::thread_rng()
|
||
|
.sample_iter(&Alphanumeric)
|
||
|
.take(7)
|
||
|
.map(char::from)
|
||
|
.collect()
|
||
|
}
|