zz_generated.deepcopy.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // +build !ignore_autogenerated
  2. /*
  3. Copyright 2018 The Knative Authors
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. // Code generated by deepcopy-gen. DO NOT EDIT.
  15. package apis
  16. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  17. func (in *FieldError) DeepCopyInto(out *FieldError) {
  18. *out = *in
  19. if in.Paths != nil {
  20. in, out := &in.Paths, &out.Paths
  21. *out = make([]string, len(*in))
  22. copy(*out, *in)
  23. }
  24. if in.errors != nil {
  25. in, out := &in.errors, &out.errors
  26. *out = make([]FieldError, len(*in))
  27. for i := range *in {
  28. (*in)[i].DeepCopyInto(&(*out)[i])
  29. }
  30. }
  31. return
  32. }
  33. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldError.
  34. func (in *FieldError) DeepCopy() *FieldError {
  35. if in == nil {
  36. return nil
  37. }
  38. out := new(FieldError)
  39. in.DeepCopyInto(out)
  40. return out
  41. }
  42. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  43. func (in *VolatileTime) DeepCopyInto(out *VolatileTime) {
  44. *out = *in
  45. in.Inner.DeepCopyInto(&out.Inner)
  46. return
  47. }
  48. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolatileTime.
  49. func (in *VolatileTime) DeepCopy() *VolatileTime {
  50. if in == nil {
  51. return nil
  52. }
  53. out := new(VolatileTime)
  54. in.DeepCopyInto(out)
  55. return out
  56. }