[][src]Struct timeout_io::SelectSet

pub struct SelectSet<'a, T: RawFd> { /* fields omitted */ }

A set of multiple (handle: event)-pairs that allows you to call select on all pairs at the same time

Methods

impl<'a, T: RawFd> SelectSet<'a, T>[src]

pub fn new() -> Self[src]

Creates a new select set

pub fn push(&mut self, handle: &'a T, event: EventMask)[src]

Pushes a new handle and the according event mask wait for to the set

pub fn select(
    self,
    timeout: Duration
) -> Result<Vec<(&'a T, EventMask)>, TimeoutIoError>
[src]

Waits on all handles in the set until an event occurrs or timeout was reached. Returns only the (handle, event_that_occurred)-pairs for the handles where an event occurred.

Auto Trait Implementations

impl<'a, T> Sync for SelectSet<'a, T> where
    T: Sync

impl<'a, T> Send for SelectSet<'a, T> where
    T: Sync

impl<'a, T> Unpin for SelectSet<'a, T>

impl<'a, T> RefUnwindSafe for SelectSet<'a, T> where
    T: RefUnwindSafe

impl<'a, T> UnwindSafe for SelectSet<'a, T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]