[][src]Struct buttplug::util::future::ButtplugFutureState

pub struct ButtplugFutureState<T> { /* fields omitted */ }

Struct used for facilitating resolving futures across contexts.

Since ButtplugFuture is Pinned, we can't just go passing it around tasks or threads. This struct is therefore used to get replies from other contexts while letting the future stay pinned. It holds the reply to the future, as well as a Waker for waking up the future when the reply is set.

Implementations

impl<T> ButtplugFutureState<T>[src]

pub fn set_reply(&mut self, reply: T)[src]

Sets the response for the future, firing the waker.

When a response is received from whatever we're waiting on, this function takes the response, updates the state struct, and calls Waker::wake so that the corresponding future can finish.

Panics

If the reply is set twice, the library will panic. We have no way of resolving two replies to the same future, so this is considered a catastrophic error.

Trait Implementations

impl<T: Clone> Clone for ButtplugFutureState<T>[src]

impl<T: Debug> Debug for ButtplugFutureState<T>[src]

impl<T> Default for ButtplugFutureState<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ButtplugFutureState<T> where
    T: RefUnwindSafe

impl<T> Send for ButtplugFutureState<T> where
    T: Send

impl<T> Sync for ButtplugFutureState<T> where
    T: Sync

impl<T> Unpin for ButtplugFutureState<T> where
    T: Unpin

impl<T> UnwindSafe for ButtplugFutureState<T> where
    T: UnwindSafe

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> GetTypeId for T where
    T: Any
[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]