[][src]Struct lightproc::recoverable_handle::RecoverableHandle

pub struct RecoverableHandle<R>(_);

Recoverable handle which encapsulates a standard Proc Handle and contain all panics inside.

Execution of after_panic will be immediate on polling the RecoverableHandle's future.

Implementations

impl<R> RecoverableHandle<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.

pub fn state(&self) -> State[src]

Returns a state of the ProcHandle.

Trait Implementations

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

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

type Output = Option<R>

The type of value produced on completion.

Auto Trait Implementations

impl<R> !RefUnwindSafe for RecoverableHandle<R>

impl<R> Send for RecoverableHandle<R>

impl<R> Sync for RecoverableHandle<R>

impl<R> Unpin for RecoverableHandle<R>

impl<R> !UnwindSafe for RecoverableHandle<R>

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.