Struct evegfx::commands::waiter::PollingWaiter[][src]

pub struct PollingWaiter<M: Model, I: Interface> { /* fields omitted */ }

The default Waiter implementation, which polls the coprocessor registers in a busy loop until there's enough available space.

Trait Implementations

impl<M: Model, I: Interface> Waiter<M, I> for PollingWaiter<M, I>[src]

type Error = Error<I>

Auto Trait Implementations

impl<M, I> Send for PollingWaiter<M, I> where
    I: Send,
    M: Send
[src]

impl<M, I> Sync for PollingWaiter<M, I> where
    I: Sync,
    M: Sync
[src]

impl<M, I> Unpin for PollingWaiter<M, I> where
    I: Unpin,
    M: Unpin
[src]

Blanket Implementations

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

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

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

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.