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
Currently only channels and shared memory regions can be sent via IPC. It would be nice if one could serialize arbitrary objects implementing IntoRawFd and FromRawFd.
eg:
let handle = Handle::new(File::open(...).unwrap());
tx.send(handle).unwrap();let file = rx.recv().unwrap().into_inner();
The text was updated successfully, but these errors were encountered:
Currently only channels and shared memory regions can be sent via IPC. It would be nice if one could serialize arbitrary objects implementing
IntoRawFd
andFromRawFd
.eg:
The text was updated successfully, but these errors were encountered: