pub trait LegacyJoiningProxyInterface: Send + Sync {
type MakeJoinableResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn make_joinable(
&self,
duration: i64,
port: u16,
) -> Self::MakeJoinableResponseFut;
}