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

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

Struct used for waiting on replies from the server.

When a ButtplugMessage is sent to the server, it may take an indeterminate amount of time to get a reply. This struct holds the reply, as well as a Waker for the related future. Once the reply_msg is filled, the waker will be called to finish the future polling.

Implementations

impl<T> ButtplugFutureState<T>[src]

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

Sets the reply message in a message state struct, firing the waker.

When a reply is received from (or in the in-process case, generated by) a server, this function takes the message, updates the state struct, and calls Waker::wake so that the corresponding future can finish.

Parameters

  • msg: Message to set as reply, which will be returned by the corresponding future.

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, 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>,