Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fieldAdd (0.07 sec)

  1. src/encoding/xml/marshal_test.go

    	FieldB string
    	*EmbedC
    }
    
    type EmbedC struct {
    	FieldA1 string `xml:"FieldA>A1"`
    	FieldA2 string `xml:"FieldA>A2"`
    	FieldB  string
    	FieldC  string
    }
    
    type embedD struct {
    	fieldD string
    	FieldE string // Promoted and visible when embedD is embedded.
    }
    
    type NameCasing struct {
    	XMLName struct{} `xml:"casing"`
    	Xy      string
    	XY      string
    	XyA     string `xml:"Xy,attr"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top