Struct ark_api::storage::LazyGetHandle
source · [−]pub struct LazyGetHandle { /* private fields */ }
Expand description
Handle to a lazy get
request for AsyncStore
s.
Can be consumed as a Future
or manually with the is_ready
and take
methods.
Implementations
sourceimpl LazyGetHandle
impl LazyGetHandle
Trait Implementations
sourceimpl Future for LazyGetHandle
impl Future for LazyGetHandle
Auto Trait Implementations
impl RefUnwindSafe for LazyGetHandle
impl Send for LazyGetHandle
impl Sync for LazyGetHandle
impl Unpin for LazyGetHandle
impl UnwindSafe for LazyGetHandle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F> IntoFuture for F where
F: Future,
impl<F> IntoFuture for F where
F: Future,
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more