pub trait Connected: Send {
// Required method
fn from_defn<'async_trait>(
pipe: ServerOrBound,
) -> Pin<Box<dyn Future<Output = Self> + Send + 'async_trait>>
where Self: 'async_trait;
}
Required Methods§
fn from_defn<'async_trait>(
pipe: ServerOrBound,
) -> Pin<Box<dyn Future<Output = Self> + Send + 'async_trait>>where
Self: 'async_trait,
Object Safety§
This trait is not object safe.