ReadData deserializes directly into the provided reflect.Value. Does NOT read ref/type info - caller handles that. For non-trivial types (slices, maps), implementations should reuse existing capacity when possible. This method should ONLY be used by collection serializers for nested element deserial
(ctx *ReadContext, value reflect.Value)
| 86 | // For general deserialization, use ReadFull instead. |
| 87 | // Errors are set on the context via ctx.SetError(). |
| 88 | ReadData(ctx *ReadContext, value reflect.Value) |
| 89 | |
| 90 | // ReadWithTypeInfo deserializes with pre-read type information. |
| 91 | // |
no outgoing calls