[][src]Struct libzmq::RadioBuilder

pub struct RadioBuilder { /* fields omitted */ }

A builder for a Radio.

Allows for ergonomic one line socket configuration.

Methods

impl RadioBuilder[src]

pub fn new() -> Self[src]

pub fn no_drop(&mut self) -> &mut Self[src]

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

pub fn with_ctx<C>(&self, ctx: C) -> Result<Radio, Error<usize>> where
    C: Into<Ctx>, 
[src]

Trait Implementations

impl BuildSend for RadioBuilder[src]

fn send_high_water_mark(&mut self, hwm: i32) -> &mut Self[src]

fn send_timeout(&mut self, timeout: Duration) -> &mut Self[src]

impl BuildSocket for RadioBuilder[src]

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

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

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

fn heartbeat<H>(&mut self, heartbeat: H) -> &mut Self where
    H: Into<Heartbeat>, 
[src]

impl Eq for RadioBuilder[src]

impl PartialEq<RadioBuilder> for RadioBuilder[src]

impl Clone for RadioBuilder[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for RadioBuilder[src]

impl Debug for RadioBuilder[src]

impl Hash for RadioBuilder[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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