pub trait Committer: Alloc {
    type Collector: Collector;

    fn collect(self) -> Self::Collector;
}
Expand description

Allocator in commit phase.

Required Associated Types

Required Methods

Records the end of commit phase and moves allocator into collect phase.

Implementors