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§
fn make_joinable( &self, duration: i64, port: u16, ) -> Self::MakeJoinableResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".