pub trait BatchIdentifier:
Clone
+ Eq
+ Hash { }Expand description
A trait for types that can serve as batch identifiers.
This trait is used to identify and group data in batch processing operations. Types implementing this trait must be cloneable, comparable for equality, and hashable for efficient lookup operations.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.