pub type CursorResultContinuation = Arc<dyn Continuation + Send + Sync + 'static>;
Expand description

A Continuation that is present within CursorResult and returned when the Cursor advances.

Aliased Type§

struct CursorResultContinuation {
    ptr: NonNull<ArcInner<dyn Continuation + Send + Sync>>,
    phantom: PhantomData<ArcInner<dyn Continuation + Send + Sync>>,
    alloc: Global,
}

Fields§

§ptr: NonNull<ArcInner<dyn Continuation + Send + Sync>>§phantom: PhantomData<ArcInner<dyn Continuation + Send + Sync>>§alloc: Global

Trait Implementations§

1.0.0 · source§

impl<T, A> Deref for Arc<T, A>where A: Allocator, T: ?Sized,

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.