pub trait Consolidate {
    // Required method
    fn consolidate(&mut self, other: Self);
}
Expand description

Trait that allows consolidate two transactions together.

Required Methods§

source

fn consolidate(&mut self, other: Self)

Consolidate two transactions into one.

Implementations on Foreign Types§

source§

impl Consolidate for ()

source§

fn consolidate(&mut self, _: Self)

source§

impl Consolidate for Vec<(Option<ChildInfo>, StorageCollection)>

source§

fn consolidate(&mut self, other: Self)

source§

impl<H, KF> Consolidate for GenericMemoryDB<H, KF>where H: Hasher, KF: KeyFunction<H>,

source§

fn consolidate(&mut self, other: Self)

Implementors§