[][src]Struct lightproc::proc_handle::ProcHandle

pub struct ProcHandle<R> { /* fields omitted */ }

A handle that awaits the result of a proc.

This type is a future that resolves to an Option<R> where:

  • None indicates the proc has panicked or was cancelled
  • Some(res) indicates the proc has completed with res

Methods

impl<R> ProcHandle<R>[src]

pub fn cancel(&self)[src]

Cancels the proc.

If the proc has already completed, calling this method will have no effect.

When a proc is cancelled, its future cannot be polled again and will be dropped instead.

pub fn stack(&self) -> &ProcStack[src]

Returns a reference to the stack stored inside the proc.

Trait Implementations

impl<R> Debug for ProcHandle<R>[src]

impl<R> Drop for ProcHandle<R>[src]

impl<R> Future for ProcHandle<R>[src]

type Output = Option<R>

The type of value produced on completion.

impl<R> Send for ProcHandle<R>[src]

impl<R> Sync for ProcHandle<R>[src]

impl<R> Unpin for ProcHandle<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for ProcHandle<R> where
    R: RefUnwindSafe

impl<R> UnwindSafe for ProcHandle<R> where
    R: UnwindSafe

Blanket Implementations

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

impl<T> AsAny for T where
    T: Any
[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> State for T where
    T: Send + Sync + 'static, 
[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.