...
1
2
3
4
19
20
21
22 package v1
23
24
25 func (in *FormatOptions) DeepCopyInto(out *FormatOptions) {
26 *out = *in
27 in.Text.DeepCopyInto(&out.Text)
28 in.JSON.DeepCopyInto(&out.JSON)
29 return
30 }
31
32
33 func (in *FormatOptions) DeepCopy() *FormatOptions {
34 if in == nil {
35 return nil
36 }
37 out := new(FormatOptions)
38 in.DeepCopyInto(out)
39 return out
40 }
41
42
43 func (in *JSONOptions) DeepCopyInto(out *JSONOptions) {
44 *out = *in
45 in.OutputRoutingOptions.DeepCopyInto(&out.OutputRoutingOptions)
46 return
47 }
48
49
50 func (in *JSONOptions) DeepCopy() *JSONOptions {
51 if in == nil {
52 return nil
53 }
54 out := new(JSONOptions)
55 in.DeepCopyInto(out)
56 return out
57 }
58
59
60 func (in *LoggingConfiguration) DeepCopyInto(out *LoggingConfiguration) {
61 *out = *in
62 out.FlushFrequency = in.FlushFrequency
63 if in.VModule != nil {
64 in, out := &in.VModule, &out.VModule
65 *out = make(VModuleConfiguration, len(*in))
66 copy(*out, *in)
67 }
68 in.Options.DeepCopyInto(&out.Options)
69 return
70 }
71
72
73 func (in *LoggingConfiguration) DeepCopy() *LoggingConfiguration {
74 if in == nil {
75 return nil
76 }
77 out := new(LoggingConfiguration)
78 in.DeepCopyInto(out)
79 return out
80 }
81
82
83 func (in *OutputRoutingOptions) DeepCopyInto(out *OutputRoutingOptions) {
84 *out = *in
85 in.InfoBufferSize.DeepCopyInto(&out.InfoBufferSize)
86 return
87 }
88
89
90 func (in *OutputRoutingOptions) DeepCopy() *OutputRoutingOptions {
91 if in == nil {
92 return nil
93 }
94 out := new(OutputRoutingOptions)
95 in.DeepCopyInto(out)
96 return out
97 }
98
99
100 func (in *TextOptions) DeepCopyInto(out *TextOptions) {
101 *out = *in
102 in.OutputRoutingOptions.DeepCopyInto(&out.OutputRoutingOptions)
103 return
104 }
105
106
107 func (in *TextOptions) DeepCopy() *TextOptions {
108 if in == nil {
109 return nil
110 }
111 out := new(TextOptions)
112 in.DeepCopyInto(out)
113 return out
114 }
115
116
117 func (in *TimeOrMetaDuration) DeepCopyInto(out *TimeOrMetaDuration) {
118 *out = *in
119 out.Duration = in.Duration
120 return
121 }
122
123
124 func (in *TimeOrMetaDuration) DeepCopy() *TimeOrMetaDuration {
125 if in == nil {
126 return nil
127 }
128 out := new(TimeOrMetaDuration)
129 in.DeepCopyInto(out)
130 return out
131 }
132
133
134 func (in VModuleConfiguration) DeepCopyInto(out *VModuleConfiguration) {
135 {
136 in := &in
137 *out = make(VModuleConfiguration, len(*in))
138 copy(*out, *in)
139 return
140 }
141 }
142
143
144 func (in VModuleConfiguration) DeepCopy() VModuleConfiguration {
145 if in == nil {
146 return nil
147 }
148 out := new(VModuleConfiguration)
149 in.DeepCopyInto(out)
150 return *out
151 }
152
153
154 func (in *VModuleItem) DeepCopyInto(out *VModuleItem) {
155 *out = *in
156 return
157 }
158
159
160 func (in *VModuleItem) DeepCopy() *VModuleItem {
161 if in == nil {
162 return nil
163 }
164 out := new(VModuleItem)
165 in.DeepCopyInto(out)
166 return out
167 }
168
View as plain text