We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
define
type SrcTags struct { FieldA string FieldB string } type DestTags struct { FieldA string FieldB string FieldC string `copier:"FieldA"` } dst := &DestTags{} src := &SrcTags{ FieldA: "A", FieldB: "B", }
now, the original field had no value
copier.Copy(dst, src) fmt.Printf("%+v", dst) // &{FieldA: FieldB:B FieldC:A}
i want the original field had value
copier.Copy(dst, src) fmt.Printf("%+v", dst) // &{FieldA:A FieldB:B FieldC:A}
Hope to have this feature,I can only use loops now.
The text was updated successfully, but these errors were encountered:
jinzhu
No branches or pull requests
Describe the feature
define
now, the original field had no value
i want the original field had value
Motivation
Hope to have this feature,I can only use loops now.
The text was updated successfully, but these errors were encountered: