(b *strings.Builder)
| 21 | // marshaler is the interface implemented by types that can marshal themselves into valid SFV. |
| 22 | type marshaler interface { |
| 23 | marshalSFV(b *strings.Builder) error |
| 24 | } |
| 25 | |
| 26 | // StructuredFieldValue represents a List, a Dictionary or an Item. |
no outgoing calls