[][src]Struct stk::tls::InjectVm

pub struct InjectVm<'vm, T> { /* fields omitted */ }

A future which wraps polls to have access to the TLS virtual machine.

Implementations

impl<'vm, T> InjectVm<'vm, T>[src]

pub unsafe fn new(vm: &'vm mut Vm, future: T) -> Self[src]

Construct a future that gives the called future thread-local access to the virtual machine.

Safety

Caller must ensure that InjectVm is correctly pinned w.r.t. its inner future.

Trait Implementations

impl<'vm, T> Future for InjectVm<'vm, T> where
    T: Future
[src]

type Output = T::Output

The type of value produced on completion.

Auto Trait Implementations

impl<'vm, T> !RefUnwindSafe for InjectVm<'vm, T>

impl<'vm, T> !Send for InjectVm<'vm, T>

impl<'vm, T> !Sync for InjectVm<'vm, T>

impl<'vm, T> Unpin for InjectVm<'vm, T> where
    T: Unpin

impl<'vm, T> !UnwindSafe for InjectVm<'vm, T>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,