pub trait AdministratorProxyInterface: Send + Sync {
    type UnregisterSystemStorageForShutdownResponseFut: Future<Output = Result<i32, Error>> + Send;

    // Required methods
    fn unregister_system_storage_for_shutdown(
        &self
    ) -> Self::UnregisterSystemStorageForShutdownResponseFut;
    fn suspend_without_exit(&self) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

Implementors§