conformal_core 0.3.7

Code shared between wrappers in conformal framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::collections::HashMap;

use conformal_component::parameters::Value;

pub mod serialization;

pub mod store;

/// This represents the current state of all parameters.
#[derive(Debug, Clone, PartialEq)]
pub struct Snapshot {
    pub values: HashMap<String, Value>,
}