pub trait ResolveStart<R>: Sync {
    fn resolve_start(&self) -> Result<R>;
    fn resolve_start_async<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<R>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Careful when using this trait, or you’ll be in for a world of stack overflows.

Required Methods

Implementations on Foreign Types

Implementors