WriteOption is used to provide options to Write().
| 20 | |
| 21 | // WriteOption is used to provide options to Write(). |
| 22 | type WriteOption interface { |
| 23 | // set sets the provided option. |
| 24 | set(*writeOptions) |
| 25 | } |
| 26 | |
| 27 | // writeOptions stores the provided options. |
| 28 | type writeOptions struct { |
nothing calls this directly
no outgoing calls
no test coverage detected