pub trait Host: Send {
// Required method
fn get_directories<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<Vec<(Resource<Descriptor>, String)>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}