pub struct RawIncoming {
pub stream: TcpStream,
pub remote_addr: String,
}Expand description
An incoming raw TCP connection with metadata.
Fields§
§stream: TcpStreamThe raw TCP stream.
remote_addr: StringRemote address of the connecting peer.
Auto Trait Implementations§
impl !Freeze for RawIncoming
impl RefUnwindSafe for RawIncoming
impl Send for RawIncoming
impl Sync for RawIncoming
impl Unpin for RawIncoming
impl UnsafeUnpin for RawIncoming
impl UnwindSafe for RawIncoming
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