[][src]Trait libzmq::prelude::ConfigureSocket

pub trait ConfigureSocket: GetSocketConfig {
    fn connect(&self) -> Option<&[Endpoint]> { ... }
fn set_connect<I, E>(&mut self, maybe: Option<I>)
    where
        I: IntoIterator<Item = E>,
        E: Into<Endpoint>
, { ... }
fn bind(&self) -> Option<&[Endpoint]> { ... }
fn set_bind<I, E>(&mut self, maybe: Option<I>)
    where
        I: IntoIterator<Item = E>,
        E: Into<Endpoint>
, { ... }
fn mechanism(&self) -> Option<&Mechanism> { ... }
fn set_mechanism(&mut self, maybe: Option<Mechanism>) { ... } }

A set of provided methods for a socket configuration.

Provided methods

fn connect(&self) -> Option<&[Endpoint]>

fn set_connect<I, E>(&mut self, maybe: Option<I>) where
    I: IntoIterator<Item = E>,
    E: Into<Endpoint>, 

fn bind(&self) -> Option<&[Endpoint]>

fn set_bind<I, E>(&mut self, maybe: Option<I>) where
    I: IntoIterator<Item = E>,
    E: Into<Endpoint>, 

fn mechanism(&self) -> Option<&Mechanism>

fn set_mechanism(&mut self, maybe: Option<Mechanism>)

Loading content...

Implementors

impl ConfigureSocket for ClientConfig[src]

impl ConfigureSocket for DishConfig[src]

impl ConfigureSocket for GatherConfig[src]

impl ConfigureSocket for RadioConfig[src]

impl ConfigureSocket for ScatterConfig[src]

impl ConfigureSocket for ServerConfig[src]

Loading content...