pub(crate) trait InitProtocol: Send + Sync {
type T;
// Required method
fn init<'async_trait>(
self: Arc<Self>,
) -> Pin<Box<dyn Future<Output = Self::T> + Send + 'async_trait>>
where Self: 'async_trait;
}
pub(crate) trait InitProtocol: Send + Sync {
type T;
// Required method
fn init<'async_trait>(
self: Arc<Self>,
) -> Pin<Box<dyn Future<Output = Self::T> + Send + 'async_trait>>
where Self: 'async_trait;
}