pub trait HandoffProxyInterface: Send + Sync {
type TakeResponseFut: Future<Output = Result<HandoffTakeResult, Error>> + Send;
// Required method
fn take(&self) -> Self::TakeResponseFut;
}Required Associated Types§
type TakeResponseFut: Future<Output = Result<HandoffTakeResult, Error>> + Send
Required Methods§
fn take(&self) -> Self::TakeResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".