pub trait ConflictAwareCell {
// Required method
fn rw_set(
&self,
intent: &TransactionIntent,
) -> (Vec<AccountId>, Vec<AccountId>);
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".