pub fn start_server<'a, App: RequestDispatcher + 'a, Addr>(
bind_address: Addr,
app: App,
) -> Result<Box<dyn Server + 'a>, Error>👎Deprecated: use
ServerBuilder::new(app, &bind_address).build() instead