aboutsummaryrefslogtreecommitdiffstats
path: root/src/types/endpoint.rs
blob: 74796aa33fa047049c7333e749b87eca36f02651 (plain) (blame)
1
2
3
4
5
6
use std::net::SocketAddr;

pub trait Endpoint: Send + 'static {
    fn from_address(addr: SocketAddr) -> Self;
    fn into_address(&self) -> SocketAddr;
}