Struct message_io::network::adapter::ConnectionInfo
source · pub struct ConnectionInfo<R: Remote> {
pub remote: R,
pub local_addr: SocketAddr,
pub peer_addr: SocketAddr,
}Expand description
Plain struct used as a returned value of Remote::connect_with()
Fields§
§remote: RThe new created remote resource
local_addr: SocketAddrLocal address of the interal resource used.
peer_addr: SocketAddrPeer address of the interal resource used.