Skip to main content

luaur_analysis/methods/
extra_information_operator_eq.rs

1use crate::records::extra_information::ExtraInformation;
2
3impl ExtraInformation {
4    #[inline]
5    pub fn operator_eq(&self, rhs: &ExtraInformation) -> bool {
6        self.message == rhs.message
7    }
8}