pub trait ConfigInto<T: FromConfig<Self>>: Sized {
// Provided method
fn config_into<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where Self: Send + 'async_trait { ... }
}
Provided Methods§
fn config_into<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>where
Self: Send + 'async_trait,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.