What
User need to implement manually CommData for each type
struct UserType{
a:i32,
}
impl CommData for UserType
{
const ID: &'static str = "UserType";
}
How
#[derive(CommData)]
struct UserType{
a:i32,
}
Estimates for realization
0
Category
Requirements / Architecture