This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
zz_generated.deepcopy.go
67 lines (57 loc) · 1.96 KB
/
zz_generated.deepcopy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// +build !ignore_autogenerated
// Code generated by deepcopy-gen. DO NOT EDIT.
package runtime
import (
pkgruntime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Metav1NameIdentifierFactory) DeepCopyInto(out *Metav1NameIdentifierFactory) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Metav1NameIdentifierFactory.
func (in *Metav1NameIdentifierFactory) DeepCopy() *Metav1NameIdentifierFactory {
if in == nil {
return nil
}
out := new(Metav1NameIdentifierFactory)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ObjectUIDIdentifierFactory) DeepCopyInto(out *ObjectUIDIdentifierFactory) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectUIDIdentifierFactory.
func (in *ObjectUIDIdentifierFactory) DeepCopy() *ObjectUIDIdentifierFactory {
if in == nil {
return nil
}
out := new(ObjectUIDIdentifierFactory)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PartialObjectImpl) DeepCopyInto(out *PartialObjectImpl) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PartialObjectImpl.
func (in *PartialObjectImpl) DeepCopy() *PartialObjectImpl {
if in == nil {
return nil
}
out := new(PartialObjectImpl)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new pkgruntime.Object.
func (in *PartialObjectImpl) DeepCopyObject() pkgruntime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}