pub trait IntVersion {
// Required method
fn int_version(&self) -> (u64, u64);
}Expand description
Has an integer tuple version that can be used to test if the data was changed. If the first number changes, it means incompatible changes. If only the second number increases, it means append-only changes.