pub trait LegacyJoiningProxyInterface: Send + Sync {
    type MakeJoinableResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn make_joinable(
        &self,
        duration: i64,
        port: u16
    ) -> Self::MakeJoinableResponseFut;
}

Required Associated Types§

Required Methods§

source

fn make_joinable( &self, duration: i64, port: u16 ) -> Self::MakeJoinableResponseFut

Implementors§