DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *BackupList)
| 149 | |
| 150 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 151 | func (in *BackupList) DeepCopyInto(out *BackupList) { |
| 152 | *out = *in |
| 153 | out.TypeMeta = in.TypeMeta |
| 154 | in.ListMeta.DeepCopyInto(&out.ListMeta) |
| 155 | if in.Items != nil { |
| 156 | in, out := &in.Items, &out.Items |
| 157 | *out = make([]Backup, len(*in)) |
| 158 | for i := range *in { |
| 159 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 160 | } |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupList. |
| 165 | func (in *BackupList) DeepCopy() *BackupList { |