pub trait CanDoCallbacks: Send + Sync {
// Required method
fn get<T: Object>(
&self,
ptr: DbPtr<T>,
) -> impl '_ + Future<Output = Result<Arc<T>>>;
}
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.