Skip to main content

luaur_analysis/methods/
deprecated_api_used_operator_eq.rs

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