ntex-rt improvements (#519)

This commit is contained in:
Nikolay Kim 2025-03-13 02:07:26 +05:00 committed by GitHub
parent 2db266ca0c
commit ecfc2936b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 373 additions and 197 deletions

View file

@ -1,4 +1,4 @@
use std::{cell::Cell, collections::VecDeque, fmt, io, ptr, rc::Rc, task, task::Poll};
use std::{cell::Cell, collections::VecDeque, io, rc::Rc, task, task::Poll};
use ntex_neon::driver::op::{CloseSocket, Handler, Interest};
use ntex_neon::driver::{AsRawFd, DriverApi, RawFd};
@ -372,21 +372,3 @@ impl<T> Drop for StreamCtl<T> {
}
}
}
impl<T> PartialEq for StreamCtl<T> {
#[inline]
fn eq(&self, other: &StreamCtl<T>) -> bool {
self.id == other.id && ptr::eq(&self.inner, &other.inner)
}
}
impl<T: fmt::Debug> fmt::Debug for StreamCtl<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.with(|streams| {
f.debug_struct("StreamCtl")
.field("id", &self.id)
.field("io", &streams[self.id].io)
.finish()
})
}
}