pub struct IncomingConnection {
pub reader: Source<Result<Bytes>>,
pub writer: UnboundedSender<Bytes>,
pub remote_addr: SocketAddr,
pub local_addr: SocketAddr,
}Fields§
§reader: Source<Result<Bytes>>§writer: UnboundedSender<Bytes>§remote_addr: SocketAddr§local_addr: SocketAddrAuto Trait Implementations§
impl Freeze for IncomingConnection
impl !RefUnwindSafe for IncomingConnection
impl Send for IncomingConnection
impl !Sync for IncomingConnection
impl Unpin for IncomingConnection
impl UnsafeUnpin for IncomingConnection
impl !UnwindSafe for IncomingConnection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more