pub trait IntoAppRepository {
type AppRepository: AppRepository + 'static;
// Required method
fn into_app_repository(self) -> Self::AppRepository;
}Required Associated Types§
type AppRepository: AppRepository + 'static
Required Methods§
fn into_app_repository(self) -> Self::AppRepository
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".