func()

in alibabacloudservicemesh/v1beta1/zz_generated.deepcopy.go [389:413]


func (in *ProxyTracingConfiguration) DeepCopyInto(out *ProxyTracingConfiguration) {
	*out = *in
	if in.Sampling != nil {
		in, out := &in.Sampling, &out.Sampling
		*out = new(float32)
		**out = **in
	}
	if in.CustomTags != nil {
		in, out := &in.CustomTags, &out.CustomTags
		*out = make(map[string]ProxyTracingCustomTag, len(*in))
		for key, val := range *in {
			(*out)[key] = *val.DeepCopy()
		}
	}
	if in.MaxPathTagLength != nil {
		in, out := &in.MaxPathTagLength, &out.MaxPathTagLength
		*out = new(uint32)
		**out = **in
	}
	if in.Zipkin != nil {
		in, out := &in.Zipkin, &out.Zipkin
		*out = new(ProxyTracingZipkin)
		(*in).DeepCopyInto(*out)
	}
}