mirror of https://github.com/knative/pkg.git
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2018 The Knative Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package apis
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FieldError) DeepCopyInto(out *FieldError) {
|
|
*out = *in
|
|
if in.Paths != nil {
|
|
in, out := &in.Paths, &out.Paths
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.errors != nil {
|
|
in, out := &in.errors, &out.errors
|
|
*out = make([]FieldError, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldError.
|
|
func (in *FieldError) DeepCopy() *FieldError {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FieldError)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VolatileTime) DeepCopyInto(out *VolatileTime) {
|
|
*out = *in
|
|
in.Inner.DeepCopyInto(&out.Inner)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolatileTime.
|
|
func (in *VolatileTime) DeepCopy() *VolatileTime {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VolatileTime)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|