1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 05:09:10 +00:00

go generate

This commit is contained in:
orangedeng
2018-12-03 19:01:35 +08:00
committed by Craig Jellick
parent 4db16000d6
commit e4937e956d
112 changed files with 9710 additions and 85 deletions

View File

@@ -2384,3 +2384,19 @@ func (in *WorkloadList) DeepCopyObject() runtime.Object {
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *WorkloadMetric) DeepCopyInto(out *WorkloadMetric) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkloadMetric.
func (in *WorkloadMetric) DeepCopy() *WorkloadMetric {
if in == nil {
return nil
}
out := new(WorkloadMetric)
in.DeepCopyInto(out)
return out
}