String returns Options as a string representation of the map.
()
| 353 | |
| 354 | // String returns Options as a string representation of the map. |
| 355 | func (o *Options) String() string { |
| 356 | return fmt.Sprintf("%v", o.Map()) |
| 357 | } |
| 358 | |
| 359 | // MarshalJSON returns Options as a JSON byte slice. |
| 360 | func (o *Options) MarshalJSON() ([]byte, error) { |
no test coverage detected