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

    // Required method
    fn disable_and_drop_persistent_logs(
        &self
    ) -> Self::DisableAndDropPersistentLogsResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§