This commit is contained in:
Nikolay Kim 2025-03-14 20:04:15 +05:00
parent 7da5a56e96
commit ccb72a7f64

View file

@ -20,9 +20,11 @@ struct ConnectOpsHandler {
inner: Rc<ConnectOpsInner>,
}
type Operations = RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>;
struct ConnectOpsInner {
api: DriverApi,
ops: RefCell<Slab<(Box<SockAddr>, Sender<io::Result<()>>)>>,
ops: Operations,
}
impl ConnectOps {