Skip to main content

luaur_analysis/methods/
normalizer_normalizer_normalize_alt_b.rs

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