1 2 3 4 5 6 7
use std::collections::HashMap; use crate::cotwin::CotwinValueTypes; pub trait CotwinEntityTrait { fn to_vec(&self) -> Vec<(String, CotwinValueTypes)>; }