Files
coyote/src/graph/staging.rs
T

10 lines
205 B
Rust

use serde_json::Value;
use std::collections::HashMap;
#[derive(Debug, Clone)]
pub struct BranchWrites {
pub node_id: String,
pub invocation_index: usize,
pub writes: HashMap<String, Value>,
}