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§

Required Methods§

Implementors§