RT is the runtime interface for all types that can be encoded and decoded.
| 28 | |
| 29 | // RT is the runtime interface for all types that can be encoded and decoded. |
| 30 | type RT interface { |
| 31 | Decodable |
| 32 | Encodable |
| 33 | Sizer |
| 34 | Unmarshaler |
| 35 | Marshaler |
| 36 | } |
| 37 | |
| 38 | // PtrTo is the runtime interface for all types that can be encoded and decoded. |
| 39 | type PtrTo[T any] interface { |
nothing calls this directly
no outgoing calls
no test coverage detected