Marshal marshals the given value into the given writer. The content type is used to determine which format to use. Use `Negotiate` to get the content type from an accept header.
(w io.Writer, contentType string, v any)
| 275 | // content type is used to determine which format to use. Use `Negotiate` to |
| 276 | // get the content type from an accept header. |
| 277 | Marshal(w io.Writer, contentType string, v any) error |
| 278 | |
| 279 | // Unmarshal unmarshals the given data into the given value. The content type |
| 280 | Unmarshal(contentType string, data []byte, v any) error |
no outgoing calls