pub fn spawn_lair_server_task<C>(
    config: C,
    server_name: Arc<str>,
    server_version: Arc<str>,
    store_factory: LairStoreFactory,
    passphrase: BufRead
) -> impl Future<Output = LairResult<LairServer>> + 'static + Send
where C: Into<LairServerConfig> + 'static + Send,
Expand description

Spawn a tokio task managing a lair server with given store factory.