Can we pass message to user's Message Handler by value?
I noticed that the Handler trait currently accepts Message by reference. However, since the framework no longer uses this Message internally, it would seem better to transfer ownership directly to the Handler, which would help reduce memeory allocate operations within the Handler(e.g. clone whole message/some string field).
I know it's a public Trait definition, modifying it would be a breaking change. However, I believe pass by value here is more Rust idiomatic, so I still put forward this as a suggestion. Feel free to close this if it's not feasible. 😉
You can work up a PR for this change, and we'll see how it looks.
OK, I can try to make one during my free time on Sunday.