prometheus/vendor/k8s.io/apimachinery/pkg/runtime/zz_generated.deepcopy.go

81 lines
2.1 KiB
Go
Raw Normal View History

2016-09-30 02:33:23 -07:00
// +build !ignore_autogenerated
/*
2017-05-11 01:29:10 -07:00
Copyright 2017 The Kubernetes Authors.
2016-09-30 02:33:23 -07:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
package runtime
import (
2017-05-11 01:29:10 -07:00
conversion "k8s.io/apimachinery/pkg/conversion"
reflect "reflect"
2016-09-30 02:33:23 -07:00
)
2017-05-11 01:29:10 -07:00
// GetGeneratedDeepCopyFuncs returns the generated funcs, since we aren't registering them.
func GetGeneratedDeepCopyFuncs() []conversion.GeneratedDeepCopyFunc {
return []conversion.GeneratedDeepCopyFunc{
{Fn: DeepCopy_runtime_RawExtension, InType: reflect.TypeOf(&RawExtension{})},
{Fn: DeepCopy_runtime_TypeMeta, InType: reflect.TypeOf(&TypeMeta{})},
{Fn: DeepCopy_runtime_Unknown, InType: reflect.TypeOf(&Unknown{})},
}
}
2016-09-30 02:33:23 -07:00
func DeepCopy_runtime_RawExtension(in interface{}, out interface{}, c *conversion.Cloner) error {
{
in := in.(*RawExtension)
out := out.(*RawExtension)
2017-05-11 01:29:10 -07:00
*out = *in
2016-09-30 02:33:23 -07:00
if in.Raw != nil {
in, out := &in.Raw, &out.Raw
*out = make([]byte, len(*in))
copy(*out, *in)
}
2017-05-11 01:29:10 -07:00
// in.Object is kind 'Interface'
if in.Object != nil {
if newVal, err := c.DeepCopy(&in.Object); err != nil {
return err
} else {
out.Object = *newVal.(*Object)
}
2016-09-30 02:33:23 -07:00
}
return nil
}
}
func DeepCopy_runtime_TypeMeta(in interface{}, out interface{}, c *conversion.Cloner) error {
{
in := in.(*TypeMeta)
out := out.(*TypeMeta)
2017-05-11 01:29:10 -07:00
*out = *in
2016-09-30 02:33:23 -07:00
return nil
}
}
func DeepCopy_runtime_Unknown(in interface{}, out interface{}, c *conversion.Cloner) error {
{
in := in.(*Unknown)
out := out.(*Unknown)
2017-05-11 01:29:10 -07:00
*out = *in
2016-09-30 02:33:23 -07:00
if in.Raw != nil {
in, out := &in.Raw, &out.Raw
*out = make([]byte, len(*in))
copy(*out, *in)
}
return nil
}
}