pub trait Update {
type Key: Ord + Clone + 'static;
type Val: Ord + Clone + 'static;
type Time: Lattice + Timestamp;
type Diff: Ord + Semigroup + 'static;
}Expand description
A type that names constituent update types.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".