api/v1alpha1/zz_generated.deepcopy.go (110 lines of code) (raw):

//go:build !ignore_autogenerated // Code generated by controller-gen. DO NOT EDIT. package v1alpha1 import ( runtime "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Icon) DeepCopyInto(out *Icon) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Icon. func (in *Icon) DeepCopy() *Icon { if in == nil { return nil } out := new(Icon) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Maintainer) DeepCopyInto(out *Maintainer) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Maintainer. func (in *Maintainer) DeepCopy() *Maintainer { if in == nil { return nil } out := new(Maintainer) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Template) DeepCopyInto(out *Template) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) out.Status = in.Status } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Template. func (in *Template) DeepCopy() *Template { if in == nil { return nil } out := new(Template) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Template) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TemplateList) DeepCopyInto(out *TemplateList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Template, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateList. func (in *TemplateList) DeepCopy() *TemplateList { if in == nil { return nil } out := new(TemplateList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *TemplateList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TemplateSpec) DeepCopyInto(out *TemplateSpec) { *out = *in if in.Icon != nil { in, out := &in.Icon, &out.Icon *out = make([]Icon, len(*in)) copy(*out, *in) } if in.Keywords != nil { in, out := &in.Keywords, &out.Keywords *out = make([]string, len(*in)) copy(*out, *in) } if in.Maintainers != nil { in, out := &in.Maintainers, &out.Maintainers *out = make([]Maintainer, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateSpec. func (in *TemplateSpec) DeepCopy() *TemplateSpec { if in == nil { return nil } out := new(TemplateSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *TemplateStatus) DeepCopyInto(out *TemplateStatus) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateStatus. func (in *TemplateStatus) DeepCopy() *TemplateStatus { if in == nil { return nil } out := new(TemplateStatus) in.DeepCopyInto(out) return out }