BatchIdentifier

Trait BatchIdentifier 

Source
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.

Implementations on Foreign Types§

Source§

impl BatchIdentifier for &str

Source§

impl BatchIdentifier for i32

Source§

impl BatchIdentifier for u32

Source§

impl BatchIdentifier for usize

Source§

impl BatchIdentifier for String

Implementors§