pub enum Connection {
Tcp(SocketAddr),
Udp(SocketAddr),
UnixSocket(String),
}
Available on crate feature
connection
only.Variants§
Tcp(SocketAddr)
Udp(SocketAddr)
Keep in mind, this currently has a 60s
timeout.
Please use Self::UnixSocket
s instead if you are on Unix.
UnixSocket(String)
Available on Unix only.