Struct curl::multi::SocketEvents[][src]

pub struct SocketEvents { /* fields omitted */ }

Notification of events that are requested on a socket.

This type is yielded to the socket_function callback to indicate what events are requested on a socket.

Methods

impl SocketEvents
[src]

Wait for incoming data. For the socket to become readable.

Wait for outgoing data. For the socket to become writable.

Wait for incoming and outgoing data. For the socket to become readable or writable.

The specified socket/file descriptor is no longer used by libcurl.

Trait Implementations

impl Debug for SocketEvents
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations