pub trait SourceLoader {
    fn load<'life0, 'async_trait>(
        source: &'life0 str
    ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
    where
        Self: Sized + 'async_trait,
        'life0: 'async_trait
; }
Expand description

implement load method.

Required Methods§

Implementors§