blob: 8751d0524f46b0fcbba2de47e4e314d428907f54 [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001/*
David Bainbridge86971522019-09-26 22:09:39 +00002Copyright 2019 The Kubernetes Authors.
Zack Williamse940c7a2019-08-21 14:25:39 -07003
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
David Bainbridge86971522019-09-26 22:09:39 +000017package v1
Zack Williamse940c7a2019-08-21 14:25:39 -070018
David Bainbridge86971522019-09-26 22:09:39 +000019import (
20 "k8s.io/apimachinery/pkg/runtime"
21)
Zack Williamse940c7a2019-08-21 14:25:39 -070022
23func (in *TableRow) DeepCopy() *TableRow {
24 if in == nil {
25 return nil
26 }
27
28 out := new(TableRow)
29
30 if in.Cells != nil {
31 out.Cells = make([]interface{}, len(in.Cells))
32 for i := range in.Cells {
33 out.Cells[i] = runtime.DeepCopyJSONValue(in.Cells[i])
34 }
35 }
36
37 if in.Conditions != nil {
38 out.Conditions = make([]TableRowCondition, len(in.Conditions))
39 for i := range in.Conditions {
40 in.Conditions[i].DeepCopyInto(&out.Conditions[i])
41 }
42 }
43
44 in.Object.DeepCopyInto(&out.Object)
45 return out
46}