Skip to main content

HandoffProxyInterface

Trait HandoffProxyInterface 

Source
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§