You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
once socket is connected, deregister the socket from tokio.
mess with the socket (with the lib)
once mess is done,
register the socket again with tokio
the PollEvented<E>.deregister signature is deregister(self, handle: &Handle) -> Result<()>, so once my socket is registered with PollEvented I can't have it back.
I'd like deregister to look like this instead: deregister(self, handle: &Handle) -> Result<E>
The text was updated successfully, but these errors were encountered:
my use case is:
PollEvented
).the
PollEvented<E>.deregister
signature isderegister(self, handle: &Handle) -> Result<()>
, so once my socket is registered withPollEvented
I can't have it back.I'd like deregister to look like this instead:
deregister(self, handle: &Handle) -> Result<E>
The text was updated successfully, but these errors were encountered: