[][src]Struct libzmq::config::ClientConfig

pub struct ClientConfig { /* fields omitted */ }

A configuration for a Client.

Especially helpfull in config files.

Implementations

impl ClientConfig[src]

pub fn new() -> Self[src]

pub fn build(&self) -> Result<Client, Error>[src]

pub fn with_ctx(&self, handle: CtxHandle) -> Result<Client, Error>[src]

pub fn apply(&self, client: &Client) -> Result<(), Error>[src]

Trait Implementations

impl Clone for ClientConfig[src]

impl ConfigureHeartbeating for ClientConfig[src]

impl ConfigureRecv for ClientConfig[src]

impl ConfigureSend for ClientConfig[src]

impl ConfigureSocket for ClientConfig[src]

impl Debug for ClientConfig[src]

impl Default for ClientConfig[src]

impl<'de> Deserialize<'de> for ClientConfig[src]

impl Eq for ClientConfig[src]

impl Hash for ClientConfig[src]

impl PartialEq<ClientConfig> for ClientConfig[src]

impl Serialize for ClientConfig[src]

impl StructuralEq for ClientConfig[src]

impl StructuralPartialEq for ClientConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,