pub trait GetType { type Output: Clone + Copy + PartialEq + Eq + Debug; // Required method fn get_type(&self) -> Self::Output; }
Gets the type of value that is stored.