IP represents an IP address type.
| 533 | |
| 534 | // IP represents an IP address type. |
| 535 | type IP struct { |
| 536 | netip.Addr |
| 537 | } |
| 538 | |
| 539 | // ConvertToNative converts the IP value to a native Go type. |
| 540 | func (i IP) ConvertToNative(typeDesc reflect.Type) (any, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected