pub trait BigMapKey: Clone + Copy + Eq + PartialEq + Hash { // Required methods fn to_u64(&self) -> u64; fn from_u64(value: u64) -> Self; }