lmn-core 0.1.2

Core engine for the lmn HTTP load testing CLI
Documentation
1
2
3
4
5
6
7
8
9
pub mod float;
pub mod string;

use rand::Rng;
use serde_json::Value;

pub trait Generate {
    fn generate(&self, rng: &mut impl Rng) -> Value;
}