in alibabacloudservicemesh/v1/zz_generated.deepcopy.go [2684:2708]
func (in *ASMSwimLaneSpec) DeepCopyInto(out *ASMSwimLaneSpec) {
*out = *in
if in.LabelSelector != nil {
in, out := &in.LabelSelector, &out.LabelSelector
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Services != nil {
in, out := &in.Services, &out.Services
*out = make([]ClusterServiceRef, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.IngressRules != nil {
in, out := &in.IngressRules, &out.IngressRules
*out = make([]SwimLaneIngressRule, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
out.IngressWeight = in.IngressWeight
}