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