luaur_code_gen/methods/
native_module_ref_operator_assign.rs1use crate::records::native_module_ref::NativeModuleRef;
2
3impl NativeModuleRef {
4 pub fn native_module_ref_operator_assign(
5 &mut self,
6 mut other: NativeModuleRef,
7 ) -> &mut NativeModuleRef {
8 self.native_module_ref_swap(&mut other);
9 self
10 }
11}