mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 13:17:56 +00:00
31327eb0c7
* test: add unit test to catch missing distribution to subsystems faster * add a simple count * introduce proc macro to generate dispatch type * refactor * refactor * chore: add license * fixup unit test * fixup merge * better errors * better fmt * fix error spans * better docs * better error messages * ui test foo * Update node/subsystem/dispatch-gen/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update node/network/bridge/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update node/subsystem/Cargo.toml Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update node/subsystem/dispatch-gen/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update node/subsystem/dispatch-gen/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update node/network/bridge/src/lib.rs Co-authored-by: Andronik Ordian <write@reusable.software> * fix compilation * use find_map * drop the silly 2, use _inner instead * Update node/network/bridge/src/lib.rs Co-authored-by: Andronik Ordian <write@reusable.software> * Update node/subsystem/dispatch-gen/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * nail deps down * more into() * flatten * missing use statement * fix messages order Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Andronik Ordian <write@reusable.software>
15 lines
542 B
Plaintext
15 lines
542 B
Plaintext
error: Must be annotated with #[skip].
|
|
--> $DIR/err-01-missing-skip.rs:32:5
|
|
|
|
|
32 | Uuuuu,
|
|
| ^^^^^
|
|
|
|
error[E0599]: no variant or associated item named `dispatch_iter` found for enum `AllMessages` in the current scope
|
|
--> $DIR/err-01-missing-skip.rs:36:27
|
|
|
|
|
27 | enum AllMessages {
|
|
| ---------------- variant or associated item `dispatch_iter` not found here
|
|
...
|
|
36 | let _x = AllMessages::dispatch_iter(Event::Else);
|
|
| ^^^^^^^^^^^^^ variant or associated item not found in `AllMessages`
|