Trait GitConfig

Source
pub trait GitConfig {
    // Required method
    fn rewrite<'life0, 'async_trait>(
        &'life0 self,
        path: String,
    ) -> Pin<Box<dyn Future<Output = PathBuf> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn rewrite<'life0, 'async_trait>( &'life0 self, path: String, ) -> Pin<Box<dyn Future<Output = PathBuf> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Rewrite the path

Implementors§