fizzbee-mbt 0.1.1

FizzBee Model Based Testing (MBT) Rust binding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::value::Value;

#[derive(Debug, Clone)]
pub struct Arg {
    pub name: String,
    pub value: Value,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct RoleId{
    pub role_name: String,
    pub index: i32,
}