func()

in crds/pkg/apis/camel/v1/zz_generated.deepcopy.go [509:522]


func (in *SourceSpec) DeepCopyInto(out *SourceSpec) {
	*out = *in
	in.DataSpec.DeepCopyInto(&out.DataSpec)
	if in.Interceptors != nil {
		in, out := &in.Interceptors, &out.Interceptors
		*out = make([]string, len(*in))
		copy(*out, *in)
	}
	if in.PropertyNames != nil {
		in, out := &in.PropertyNames, &out.PropertyNames
		*out = make([]string, len(*in))
		copy(*out, *in)
	}
}