1use crate::ryz::dict; 2 3pub trait Collection<T> { 4 fn to_msg(&self) -> T; 5} 6pub type Query = dict::dict<String, serde_json::Value>;