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
// XXX: the idea of the refcell is to have a stream and a sink at the same time using the same core
470
+
// but this would panic when using select on the stream and then using the sink to send a message, because the stream would have a mutable reference to the core and then the sink would try to borrow it again.
471
+
// See clippy warning
472
+
// I think we can only have a stream or a sink at a time, mutably borrowing the core
0 commit comments