github.com/crossplane-contrib/function-cue@v0.2.2-0.20240508161918-5100fcb5a058/input/v1beta1/zz_generated.deepcopy.go (about) 1 //go:build !ignore_autogenerated 2 3 // Code generated by controller-gen. DO NOT EDIT. 4 5 package v1beta1 6 7 import ( 8 runtime "k8s.io/apimachinery/pkg/runtime" 9 ) 10 11 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 12 func (in *CueInput) DeepCopyInto(out *CueInput) { 13 *out = *in 14 out.TypeMeta = in.TypeMeta 15 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 16 } 17 18 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CueInput. 19 func (in *CueInput) DeepCopy() *CueInput { 20 if in == nil { 21 return nil 22 } 23 out := new(CueInput) 24 in.DeepCopyInto(out) 25 return out 26 } 27 28 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 29 func (in *CueInput) DeepCopyObject() runtime.Object { 30 if c := in.DeepCopy(); c != nil { 31 return c 32 } 33 return nil 34 }