1use crate::records::identifier::Identifier; 2 3#[allow(non_snake_case)] 4pub fn operator_eq(lhs: &Identifier, rhs: &Identifier) -> bool { 5 lhs.name() == rhs.name() && lhs.ctx() == rhs.ctx() 6}