fn teq()

in gazebo/src/types.rs [32:39]


    fn teq(self) -> T;
    /// Convert between references to two equal types.
    fn teq_ref(&self) -> &T;
    /// Convert between mutable references to two equal types.
    fn teq_mut(&mut self) -> &mut T;
}

impl<T> TEq<T> for T {