librstb 0.1.1

Write HDL-Testbenches in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14


#[derive(Debug, Clone, PartialEq)]
pub enum Val {
    Int(u32),
    Signed(i32),
    Float(f32),
    BitStr(String),
    Vec(Vec<Val>),
    String(String),
    None,
    Error,
    // .. tbd
}