batpak 0.8.2

Event sourcing with causal graphs and caller-defined gates. Sync API, no async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0599]: no function or associated item named `does_not_exist` found for struct `State` in the current scope
  --> tests/ui/es_missing_handler.rs:11:34
   |
11 | #[batpak(event = Ping, handler = does_not_exist)]
   |                                  ^^^^^^^^^^^^^^ function or associated item not found in `State`
12 | struct State {}
   | ------------ function or associated item `does_not_exist` not found for this struct

error[E0599]: no method named `does_not_exist` found for mutable reference `&mut State` in the current scope
  --> tests/ui/es_missing_handler.rs:11:34
   |
11 | #[batpak(event = Ping, handler = does_not_exist)]
   |                                  ^^^^^^^^^^^^^^ method not found in `&mut State`