मुझे लगता है कि inline
. का उपयोग करना फ़ील्ड टैग आपके लिए सबसे अच्छा विकल्प है। mgo/v2/bson दस्तावेज़ कहता है:
inline Inline the field, which must be a struct or a map,
causing all of its fields or keys to be processed as if
they were part of the outer struct. For maps, keys must
not conflict with the bson keys of other struct fields.
तब आपकी संरचना को इस प्रकार परिभाषित किया जाना चाहिए:
type Cube struct {
Square `bson:",inline"`
Depth int
}
संपादित करें
inline
mgo/v1/bson
. में भी मौजूद है यदि आप उसका उपयोग कर रहे हैं।