Currently the Reply trait is public, but it cannot be used in any meaningful way, because its only method requires an instance of ReplySender which is private and only has private implementors.
What is the purpose of having Reply in the public API? Looking at the code it seems to be an internal implementation trait that should not be exposed to users.
Currently the
Replytrait is public, but it cannot be used in any meaningful way, because its only method requires an instance ofReplySenderwhich is private and only has private implementors.What is the purpose of having
Replyin the public API? Looking at the code it seems to be an internal implementation trait that should not be exposed to users.