start_server

Function start_server 

Source
pub async fn start_server<T: ServerConn + Send + 'static>(
    address: impl ToSocketAddrs,
) -> Result<()>
Examples found in repository?
examples/ping_server.rs (line 79)
78async fn main() {
79    let _ = start_server::<ServerInstance>("127.0.0.1:8000").await;
80}