use { alloc::{string::String, vec::Vec}, hashbrown::HashMap, log::info, }; #[derive(PartialEq)] pub struct Type {} #[derive(PartialEq)] pub struct Funct { takes: Vec, gives: Vec, } #[derive(PartialEq)] pub struct Protocol { types: HashMap, fns: HashMap, } impl Protocol { pub fn void() -> Self { Self { types: HashMap::new(), fns: HashMap::new(), } } // Check if a protocol defines all types it needs too fn validate_protocol() -> bool { false } } impl From for Protocol { fn from(value: alloc::string::String) -> Self { let mut hm_t = HashMap::new(); hm_t.insert(value, Type {}); Self { types: hm_t, fns: HashMap::new(), } } }