pub trait Choices {
    fn run<'async_trait, T>(
        &'static self,
        addr: T
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>Notable traits for Pin<P>impl<P> Future for Pin<P> where
    P: DerefMut,
    <P as Deref>::Target: Future
type Output = <<P as Deref>::Target as Future>::Output;

    where
        T: 'async_trait + Into<SocketAddr> + Send,
        Self: 'async_trait
; }
Expand description

A trait to manage the http server responsible for the configuration.

Required Methods

Starts the configuration http server on the chosen address.

Implementations on Foreign Types

Implementors