DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *ModelList)
| 101 | |
| 102 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 103 | func (in *ModelList) DeepCopyInto(out *ModelList) { |
| 104 | *out = *in |
| 105 | out.TypeMeta = in.TypeMeta |
| 106 | in.ListMeta.DeepCopyInto(&out.ListMeta) |
| 107 | if in.Items != nil { |
| 108 | in, out := &in.Items, &out.Items |
| 109 | *out = make([]Model, len(*in)) |
| 110 | for i := range *in { |
| 111 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelList. |
| 117 | func (in *ModelList) DeepCopy() *ModelList { |