pub trait ControllerProxyInterface: Send + Sync {
type SetUpdateCompletedResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_update_completed(&self) -> Self::SetUpdateCompletedResponseFut;
}
pub trait ControllerProxyInterface: Send + Sync {
type SetUpdateCompletedResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_update_completed(&self) -> Self::SetUpdateCompletedResponseFut;
}