Yaroslav Dynnikov

Results 12 issues of Yaroslav Dynnikov

The first thing to be done is to implement the `stop` function. Despite the `migrator` role is permanent, Cartridge always calls `stop` + `init` callbacks and cleans HTTP routes upon...

feature

Enum of named structs is one of usual patterns: ```rust struct Foo {} struct Bar {} enum FooBar { Foo(Foo), Bar(Bar), } ``` Are there any ways to reduce the...