Skip to main content

AsyncOrmGeneratedQuerySession

Trait AsyncOrmGeneratedQuerySession 

Source
pub trait AsyncOrmGeneratedQuerySession {
    type Error;

    // Required method
    fn query_generated_records_async<'a, R: GeneratedRecord + Default + 'a>(
        &'a mut self,
        document: &'a IrDocument,
    ) -> OrmFuture<'a, Vec<R>, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn query_generated_records_async<'a, R: GeneratedRecord + Default + 'a>( &'a mut self, document: &'a IrDocument, ) -> OrmFuture<'a, Vec<R>, Self::Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§