pub trait Commit {
    type Item;

    fn commit(self, com: &impl Committer) -> Self::Item;
}
Expand description

Something that can be committed in commit phase.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors