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

    // Required method
    fn pass(&self, event_pair: EventPair) -> Self::PassResponseFut;
}

Required Associated Types§

source

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

Required Methods§

source

fn pass(&self, event_pair: EventPair) -> Self::PassResponseFut

Implementors§