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

    // Required method
    fn notify(&self, view_ref: ViewRef) -> Self::NotifyResponseFut;
}

Required Associated Types§

source

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

Required Methods§

source

fn notify(&self, view_ref: ViewRef) -> Self::NotifyResponseFut

Implementors§