pub trait HandoffProxyInterface: Send + Sync {
    type TakeResponseFut: Future<Output = Result<HandoffTakeResult, Error>> + Send;

    // Required method
    fn take(&self) -> Self::TakeResponseFut;
}

Required Associated Types§

Required Methods§

source

fn take(&self) -> Self::TakeResponseFut

Implementors§