pub trait IntoID<T>:
Sized
+ Clone
+ Sync
+ Send
+ 'static {
// Required method
fn into_id(
self,
) -> Pin<Box<dyn Future<Output = Result<T, DaggerError>> + Send>>;
}Required Methods§
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.