Struct curl::multi::WaitFd[][src]

pub struct WaitFd { /* fields omitted */ }
Expand description

File descriptor to wait on for use with the wait method on a multi handle.

Implementations

impl WaitFd[src]

pub fn new() -> WaitFd[src]

Constructs an empty (invalid) WaitFd.

pub fn set_fd(&mut self, fd: Socket)[src]

Set the file descriptor to wait for.

pub fn poll_on_read(&mut self, val: bool) -> &mut WaitFd[src]

Indicate that the socket should poll on read events such as new data received.

Corresponds to CURL_WAIT_POLLIN.

pub fn poll_on_priority_read(&mut self, val: bool) -> &mut WaitFd[src]

Indicate that the socket should poll on high priority read events such as out of band data.

Corresponds to CURL_WAIT_POLLPRI.

pub fn poll_on_write(&mut self, val: bool) -> &mut WaitFd[src]

Indicate that the socket should poll on write events such as the socket being clear to write without blocking.

Corresponds to CURL_WAIT_POLLOUT.

pub fn received_read(&self) -> bool[src]

After a call to wait, returns true if poll_on_read was set and a read event occured.

pub fn received_priority_read(&self) -> bool[src]

After a call to wait, returns true if poll_on_priority_read was set and a priority read event occured.

pub fn received_write(&self) -> bool[src]

After a call to wait, returns true if poll_on_write was set and a write event occured.

Trait Implementations

impl Debug for WaitFd[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl From<pollfd> for WaitFd[src]

fn from(pfd: pollfd) -> WaitFd[src]

Performs the conversion.

Auto Trait Implementations

impl RefUnwindSafe for WaitFd

impl Send for WaitFd

impl Sync for WaitFd

impl Unpin for WaitFd

impl UnwindSafe for WaitFd

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.