(self)
| 1442 | """ |
| 1443 | |
| 1444 | def to_string(self): |
| 1445 | if not self.is_valid: |
| 1446 | return self._format_null() |
| 1447 | value = deref(self.val['value']) |
| 1448 | return f"{self._format_type()} of value {value}" |
| 1449 | |
| 1450 | |
| 1451 | class StructScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected