models
models copied to clipboard
add a Json<T> and Blob<T> type for serializable objects
create a Json<T> type can hold any type T that implements Serialize and Deserialize. Json<T> probably using serde_json and Blob<T> or Bytes<T> using bincode. they should also implement Deref and DerefMut to T.