pub trait HasBuilder: IntoInnerSocket {
    fn builder(ctx: Arc<Context>) -> SocketBuilder<'static, Self>
    where
        Self: Sized
, { ... } }
Expand description

This trait is implemented by all socket types to allow custom builders to be created

Provided Methods

Implementors