1 unstable release

0.1.0 Apr 21, 2022

#484 in #derive

Download history 31/week @ 2024-11-13 32/week @ 2024-11-20 20/week @ 2024-11-27 30/week @ 2024-12-04 23/week @ 2024-12-11 16/week @ 2024-12-18 13/week @ 2024-12-25 14/week @ 2025-01-01 23/week @ 2025-01-08 5/week @ 2025-01-15 7/week @ 2025-01-29 29/week @ 2025-02-05 28/week @ 2025-02-12 23/week @ 2025-02-19 4/week @ 2025-02-26

87 downloads per month

MIT/Apache

6KB
94 lines

Generate-Random

Generate random data.

Example

use generate_random::GenerateRandom;

#[derive(GenerateRandom)]
enum MyEnum {
    A,
    C(bool),
    B {
        x: u8,
    },
    // Providing a weight allows changing the probabilities.
    // This variant is now twice as likely to be generated as the others.
    #[weight(2)]
    D,
}

let mut rng = rand::thread_rng();
let my_value = MyEnum::generate_random(&mut rng);

Documentation

Documentation


lib.rs:

Generate random data.

Examples

use generate_random::GenerateRandom;

#[derive(GenerateRandom)]
enum MyEnum {
    A,
    C(bool),
    B {
        x: u8,
    },
    // Providing a weight allows changing the probabilities.
    // This variant is now twice as likely to be generated as the others.
    #[weight(2)]
    D,
}

let mut rng = rand::thread_rng();
let my_value = MyEnum::generate_random(&mut rng);

Dependencies

~0.4–1MB
~20K SLoC