pub trait TryIntoModel: Send + Sync {
// Required method
fn try_into_model<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Model>>> + Send + 'async_trait>>
where Self: 'async_trait;
}
pub trait TryIntoModel: Send + Sync {
// Required method
fn try_into_model<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Model>>> + Send + 'async_trait>>
where Self: 'async_trait;
}