DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *PipelineList)
| 321 | |
| 322 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 323 | func (in *PipelineList) DeepCopyInto(out *PipelineList) { |
| 324 | *out = *in |
| 325 | out.TypeMeta = in.TypeMeta |
| 326 | in.ListMeta.DeepCopyInto(&out.ListMeta) |
| 327 | if in.Items != nil { |
| 328 | in, out := &in.Items, &out.Items |
| 329 | *out = make([]Pipeline, len(*in)) |
| 330 | for i := range *in { |
| 331 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 332 | } |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PipelineList. |
| 337 | func (in *PipelineList) DeepCopy() *PipelineList { |