CanDoCallbacks

Trait CanDoCallbacks 

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

Required Methods§

Source

fn get<T: Object>( &self, ptr: DbPtr<T>, ) -> impl '_ + Future<Output = Result<Arc<T>>>

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.

Implementors§

Source§

impl<D: Db> CanDoCallbacks for D