usecore::ops::Index;/// Key used in `HighwayHash` that will drastically change the hash outputs.
#[derive(Debug, Default, Clone, Copy)]#[repr(align(32))]pubstructKey(pub [u64; 4]);implIndex<usize>forKey{typeOutput=u64;fnindex(&self, index:usize)->&u64{&self.0[index]}}