type encoding/xml.Encoder

14 uses

	encoding/xml (current package)
		marshal.go#L104: 	MarshalXML(e *Encoder, start StartElement) error
		marshal.go#L136: type Encoder struct {
		marshal.go#L141: func NewEncoder(w io.Writer) *Encoder {
		marshal.go#L142: 	e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
		marshal.go#L150: func (enc *Encoder) Indent(prefix, indent string) {
		marshal.go#L161: func (enc *Encoder) Encode(v interface{}) error {
		marshal.go#L176: func (enc *Encoder) EncodeElement(v interface{}, start StartElement) error {
		marshal.go#L202: func (enc *Encoder) EncodeToken(t Token) error {
		marshal.go#L299: func (enc *Encoder) Flush() error {
		marshal.go#L305: 	encoder    *Encoder

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
		build.go#L19: func BuildXML(params interface{}, e *xml.Encoder) error {
		build.go#L23: func buildXML(params interface{}, e *xml.Encoder, sorted bool) error {
		build.go#L47: 	encoder    *xml.Encoder
		xml_to_struct.go#L121: func StructToXML(e *xml.Encoder, node *XMLNode, sorted bool) error {