5 releases

0.0.5 Mar 20, 2021
0.0.4 Feb 18, 2021
0.0.3 Feb 12, 2021
0.0.2 Feb 10, 2021
0.0.1 Feb 8, 2021

#3 in #step-flow

Download history 4/week @ 2024-02-04 3/week @ 2024-02-11 9/week @ 2024-02-18 24/week @ 2024-02-25 15/week @ 2024-03-03 22/week @ 2024-03-10 14/week @ 2024-03-17

75 downloads per month
Used in 7 crates (4 directly)

Apache-2.0

49KB
1K SLoC

Rust

website | crates.io | npm

Related projects


lib.rs:

Data layer for StepFlow

StateData is the main struct used to store data.

Examples

// create the var/value combination
let email_var = EmailVar::new(VarId::new(0));
let email_val = EmailValue::try_new("test@stepflow.dev").unwrap();

// insert it in a StateData
let mut statedata = StateData::new();
statedata.insert(&email_var.boxed(), email_val.boxed());

Dependencies

~180KB