pub trait SystemControllerProxyInterface: Send + Sync {
    type ShutdownResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn shutdown(&self) -> Self::ShutdownResponseFut;
}

Required Associated Types§

source

type ShutdownResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

Implementors§