in api/v1alpha1/zz_generated.deepcopy.go [1334:1427]
func (in *NexusRepositorySpec) DeepCopyInto(out *NexusRepositorySpec) {
*out = *in
if in.Apt != nil {
in, out := &in.Apt, &out.Apt
*out = new(AptSpec)
(*in).DeepCopyInto(*out)
}
if in.Bower != nil {
in, out := &in.Bower, &out.Bower
*out = new(BowerSpec)
(*in).DeepCopyInto(*out)
}
if in.Cocoapods != nil {
in, out := &in.Cocoapods, &out.Cocoapods
*out = new(CocoapodsSpec)
(*in).DeepCopyInto(*out)
}
if in.Conan != nil {
in, out := &in.Conan, &out.Conan
*out = new(ConanSpec)
(*in).DeepCopyInto(*out)
}
if in.Conda != nil {
in, out := &in.Conda, &out.Conda
*out = new(CondaSpec)
(*in).DeepCopyInto(*out)
}
if in.Docker != nil {
in, out := &in.Docker, &out.Docker
*out = new(DockerSpec)
(*in).DeepCopyInto(*out)
}
if in.GitLfs != nil {
in, out := &in.GitLfs, &out.GitLfs
*out = new(GitLfsSpec)
(*in).DeepCopyInto(*out)
}
if in.Go != nil {
in, out := &in.Go, &out.Go
*out = new(GoSpec)
(*in).DeepCopyInto(*out)
}
if in.Helm != nil {
in, out := &in.Helm, &out.Helm
*out = new(HelmSpec)
(*in).DeepCopyInto(*out)
}
if in.Maven != nil {
in, out := &in.Maven, &out.Maven
*out = new(MavenSpec)
(*in).DeepCopyInto(*out)
}
if in.Npm != nil {
in, out := &in.Npm, &out.Npm
*out = new(NpmSpec)
(*in).DeepCopyInto(*out)
}
if in.Nuget != nil {
in, out := &in.Nuget, &out.Nuget
*out = new(NugetSpec)
(*in).DeepCopyInto(*out)
}
if in.P2 != nil {
in, out := &in.P2, &out.P2
*out = new(P2Spec)
(*in).DeepCopyInto(*out)
}
if in.Pypi != nil {
in, out := &in.Pypi, &out.Pypi
*out = new(PypiSpec)
(*in).DeepCopyInto(*out)
}
if in.R != nil {
in, out := &in.R, &out.R
*out = new(RSpec)
(*in).DeepCopyInto(*out)
}
if in.Raw != nil {
in, out := &in.Raw, &out.Raw
*out = new(RawSpec)
(*in).DeepCopyInto(*out)
}
if in.RubyGems != nil {
in, out := &in.RubyGems, &out.RubyGems
*out = new(RubyGemsSpec)
(*in).DeepCopyInto(*out)
}
if in.Yum != nil {
in, out := &in.Yum, &out.Yum
*out = new(YumSpec)
(*in).DeepCopyInto(*out)
}
out.NexusRef = in.NexusRef
}