Type Alias AsyncDerivedGuard

pub type AsyncDerivedGuard<T> = ReadGuard<T, Mapped<AsyncPlain<SendOption<T>>, T>>;
Expand description

A read guard that holds access to an async derived resource.

Implements Deref to access the inner value. This should not be held longer than it is needed, as it prevents updates to the inner value.

Aliased Type§

pub struct AsyncDerivedGuard<T> { /* private fields */ }