Conversation
|
Summary of changes
pub struct Cat {
pub pet: Pet,
pub tail_color: String,
}
pub struct Tables {
pet: HashMap<u64, as_holder!(Pet)>,
pet_any: HashMap<u64, as_holder!(PetAny)>,
cat: HashMap<u64, as_holder!(Cat)>,
}The secondary change perhaps superfluity... Original EXPRESS for example: |
This should not be added. In original design, This |
I will fix this in #135. For this PR,
please remove this part, and focus only on the first "Adds supertype into subtype as a field." part. |
|
It has been modified to conform to the source code https://github.com/ricosjp/ruststep/blob/master/ruststep/tests/any_deserialize.rs . |
Close #126