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