pub trait Update {
type Key: Ord + Clone + 'static;
type Val: Ord + Clone + 'static;
type Time: Ord + Lattice + Timestamp + Clone;
type Diff: Semigroup + Clone;
}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".