type encoding/xml.Encoder

11 uses

	encoding/xml (current package)
		marshal.go#L111: 	MarshalXML(e *Encoder, start StartElement) error
		marshal.go#L146: type Encoder struct {
		marshal.go#L151: func NewEncoder(w io.Writer) *Encoder {
		marshal.go#L152: 	e := &Encoder{printer{w: bufio.NewWriter(w)}}
		marshal.go#L160: func (enc *Encoder) Indent(prefix, indent string) {
		marshal.go#L171: func (enc *Encoder) Encode(v any) error {
		marshal.go#L186: func (enc *Encoder) EncodeElement(v any, start StartElement) error {
		marshal.go#L212: func (enc *Encoder) EncodeToken(t Token) error {
		marshal.go#L309: func (enc *Encoder) Flush() error {
		marshal.go#L316: func (enc *Encoder) Close() error {
		marshal.go#L322: 	encoder    *Encoder