1//! Memory for RETE nodes 2 3#[derive(Debug, Clone)] 4pub struct AlphaMemory { 5 pub matches: Vec<(String, String)>, 6} 7 8#[derive(Debug, Clone)] 9pub struct BetaMemory { 10 pub partial_matches: Vec<Vec<(String, String)>>, 11}