in crds/pkg/apis/camel/v1/zz_generated.deepcopy.go [13:20]
func (in *DataSpec) DeepCopyInto(out *DataSpec) {
*out = *in
if in.RawContent != nil {
in, out := &in.RawContent, &out.RawContent
*out = make([]byte, len(*in))
copy(*out, *in)
}
}