Marshal returns the wire format of v.
(v any)
| 105 | type Codec interface { |
| 106 | // Marshal returns the wire format of v. |
| 107 | Marshal(v any) ([]byte, error) |
| 108 | // Unmarshal parses the wire format into v. |
| 109 | Unmarshal(data []byte, v any) error |
| 110 | // Name returns the name of the Codec implementation. The returned string |
no outgoing calls