1 2 3 4 5 6 7
pub(crate) fn true_() -> bool { true } pub(crate) fn eq_default<T: Default + PartialEq>(t: &T) -> bool { t.eq(&Default::default()) }