DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *StorageList)
| 564 | |
| 565 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 566 | func (in *StorageList) DeepCopyInto(out *StorageList) { |
| 567 | *out = *in |
| 568 | out.TypeMeta = in.TypeMeta |
| 569 | in.ListMeta.DeepCopyInto(&out.ListMeta) |
| 570 | if in.Items != nil { |
| 571 | in, out := &in.Items, &out.Items |
| 572 | *out = make([]Storage, len(*in)) |
| 573 | for i := range *in { |
| 574 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 575 | } |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageList. |
| 580 | func (in *StorageList) DeepCopy() *StorageList { |