macro_rules! define_composite_type {
    ($ty:ident { $( $field_name:ident : $field_ty:ty ),+ }) => { ... };
}
Expand description

Defines a type built out of other Parcel types.

define_composite_type!(Foo {
    a: u8,
    b: u16
});