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
Hi, is it possible to add a method on Loop that does the equivalent of the private FromInner trait? I need to create a Loop from a uv_loop_t. Would it be possible to also make that function const?
The text was updated successfully, but these errors were encountered:
Hmm, seems possible, but I'd caution against it. libuv-rs uses the loop's data to track some stuff - using a uv_loop that was created outside of libuv-rs could cause a segfault if used incorrectly. If I added this feature, I'd probably mark it unsafe. Is that acceptable?
Hi, is it possible to add a method on
Loop
that does the equivalent of the privateFromInner
trait? I need to create aLoop
from auv_loop_t
. Would it be possible to also make that functionconst
?The text was updated successfully, but these errors were encountered: