Skip to main content

AsyncOrmRecordSession

Trait AsyncOrmRecordSession 

Source
pub trait AsyncOrmRecordSession {
    type Error;

    // Required method
    fn mutate_record_async<'a>(
        &'a mut self,
        record: &'a mut DynamicRecord,
        mutation: RecordMutation,
    ) -> OrmFuture<'a, (), Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn mutate_record_async<'a>( &'a mut self, record: &'a mut DynamicRecord, mutation: RecordMutation, ) -> OrmFuture<'a, (), Self::Error>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§