[][src]Trait libzmq::prelude::BuildSocket

pub trait BuildSocket: GetSocketConfig + Sized {
    fn connect<I, E>(&mut self, endpoints: I) -> &mut Self
    where
        I: IntoIterator<Item = E>,
        E: Into<Endpoint>
, { ... }
fn bind<I, E>(&mut self, endpoints: I) -> &mut Self
    where
        I: IntoIterator<Item = E>,
        E: Into<Endpoint>
, { ... }
fn mechanism<M>(&mut self, mechanism: M) -> &mut Self
    where
        M: Into<Mechanism>
, { ... } }

A set of provided methods for a socket builder.

Provided methods

fn connect<I, E>(&mut self, endpoints: I) -> &mut Self where
    I: IntoIterator<Item = E>,
    E: Into<Endpoint>, 

fn bind<I, E>(&mut self, endpoints: I) -> &mut Self where
    I: IntoIterator<Item = E>,
    E: Into<Endpoint>, 

fn mechanism<M>(&mut self, mechanism: M) -> &mut Self where
    M: Into<Mechanism>, 

Loading content...

Implementors

impl BuildSocket for ClientBuilder[src]

impl BuildSocket for DishBuilder[src]

impl BuildSocket for GatherBuilder[src]

impl BuildSocket for RadioBuilder[src]

impl BuildSocket for ScatterBuilder[src]

impl BuildSocket for ServerBuilder[src]

Loading content...