Writer writes a value to a byte slice.
| 26 | |
| 27 | // Writer writes a value to a byte slice. |
| 28 | type Writer interface { |
| 29 | // Write writes a value to a byte slice. |
| 30 | Write(*model.Value) ([]byte, error) |
| 31 | } |
| 32 | |
| 33 | // NewWriterFn is a function that creates a new writer. |
| 34 | type NewWriterFn func(options WriterOptions) (Writer, error) |
no outgoing calls
no test coverage detected