pub trait AsyncOrmGeneratedRecordSession {
type Error;
// Required method
fn mutate_generated_record_async<'a, R: GeneratedRecord + 'a>(
&'a mut self,
record: &'a mut R,
mutation: RecordMutation,
) -> OrmFuture<'a, (), Self::Error>;
}Expand description
Async counterpart used by transport clients without introducing a runtime dependency into the language-neutral ORM crate.
Required Associated Types§
Required Methods§
fn mutate_generated_record_async<'a, R: GeneratedRecord + 'a>( &'a mut self, record: &'a mut R, mutation: RecordMutation, ) -> OrmFuture<'a, (), Self::Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".