[][src]Struct tokio_zmq::Pull

pub struct Pull { /* fields omitted */ }

The PULL SocketType wrapper type

Pull implements StreamSocket, and has an associated controlled variant.

Trait Implementations

impl From<Socket> for Pull
[src]

impl From<(Socket, PollEvented<ZmqFile>)> for Pull
[src]

impl Debug for Pull
[src]

impl IntoInnerSocket for Pull
[src]

type Socket = Socket

impl UnPair for Pull
[src]

impl StreamSocket for Pull
[src]

fn recv(self) -> <Self::Socket as InnerSocket<Self>>::Response
[src]

Receive a single multipart message from the socket. Read more

fn stream(self) -> <Self::Socket as InnerSocket<Self>>::Stream
[src]

Receive a stream of multipart messages from the socket. Read more

Auto Trait Implementations

impl Send for Pull

impl !Sync for Pull

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> HasBuilder for T where
    T: IntoInnerSocket
[src]

fn builder(ctx: Arc<Context>) -> SocketBuilder<'static, Self>
[src]