While using this library, I noticed that some Endpoint send methods are &mut self and some are just &self. Looking further, it looks like the method for sending payloads is just &self, meaning that potentially none of these send methods need to be &mut self?
The Issue
While using this library, I noticed that some
Endpoint
send methods are&mut self
and some are just&self
. Looking further, it looks like the method for sending payloads is just&self
, meaning that potentially none of these send methods need to be&mut self
?