[][src]Struct libzmq::GatherBuilder

pub struct GatherBuilder { /* fields omitted */ }

A builder for a Gather.

Allows for ergonomic one line socket configuration.

Methods

impl GatherBuilder[src]

pub fn new() -> Self[src]

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

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

Trait Implementations

impl BuildHeartbeating for GatherBuilder[src]

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

impl BuildRecv for GatherBuilder[src]

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

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

impl BuildSocket for GatherBuilder[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]

impl Eq for GatherBuilder[src]

impl PartialEq<GatherBuilder> for GatherBuilder[src]

impl Clone for GatherBuilder[src]

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

Performs copy-assignment from source. Read more

impl Default for GatherBuilder[src]

impl Debug for GatherBuilder[src]

impl Hash for GatherBuilder[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

impl Serialize for GatherBuilder[src]

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

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]

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