DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *ModelStatus)
| 158 | |
| 159 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 160 | func (in *ModelStatus) DeepCopyInto(out *ModelStatus) { |
| 161 | *out = *in |
| 162 | if in.State != nil { |
| 163 | in, out := &in.State, &out.State |
| 164 | *out = new(ModelState) |
| 165 | **out = **in |
| 166 | } |
| 167 | if in.Conditions != nil { |
| 168 | in, out := &in.Conditions, &out.Conditions |
| 169 | *out = make([]v1.Condition, len(*in)) |
| 170 | for i := range *in { |
| 171 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelStatus. |
| 177 | func (in *ModelStatus) DeepCopy() *ModelStatus { |