Skip to main content

luaur_analysis/methods/
normalizer_operator_assign_normalize.rs

1use crate::records::normalizer::Normalizer;
2
3impl Normalizer {
4    /// In C++, this method is deleted to prevent move assignment.
5    /// In Rust, `Normalizer` does not implement `Clone` or `Copy`,
6    /// and move assignment is prevented by not implementing `Copy`.
7    #[allow(dead_code)]
8    pub fn operator_assign_mut(&mut self) {
9        panic!("Normalizer move assignment is deleted in C++");
10    }
11}