pub trait DioxusIntegration: Send + Sync {
// Required methods
fn extract_shield<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = ShieldDyn> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn extract_session<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Session> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}