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