holo[m]: > <@holo:matrix.org> According to this, struct should be as value of variant? Not like that: > > ``` > > struct Struct1; > struct Struct2; > > emum Message { > struct1, > struct2 > } > > ``` > ? No, more like: ```rust struct Foo; struct Bar; enum Message { Foo(Foo), Bar(Bar) } ```