(self, field: Field)
| 590 | return self.is_weak_ref(field.ref_options) |
| 591 | |
| 592 | def get_element_weak_ref(self, field: Field) -> bool: |
| 593 | return self.is_weak_ref(field.element_ref_options) |
| 594 | |
| 595 | def get_map_value_weak_ref(self, field: Field) -> bool: |
| 596 | if isinstance(field.field_type, MapType): |
no test coverage detected