pub trait ResourcesManager: Send + Sync {
// Required methods
fn delete_namespace<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn namespace(&self) -> &str;
}