pub trait DebugApi: Send + Sync {
// Required method
fn debug<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Debug200Response, Error<DebugError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}