pub trait ParallelFrameHasher: FrameHasher {
// Provided method
fn hash_frames_parallel(&self, images: &[RgbaImage]) -> Vec<Self::Hash>
where Self::Hash: Send { ... }
}Expand description
Extension trait for parallel hashing operations.