mirror of https://github.com/status-im/consul.git
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
|
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
||
|
package pbproxystate
|
||
|
|
||
|
import (
|
||
|
proto "google.golang.org/protobuf/proto"
|
||
|
)
|
||
|
|
||
|
// DeepCopyInto supports using Endpoints within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *Endpoints) DeepCopyInto(out *Endpoints) {
|
||
|
p := proto.Clone(in).(*Endpoints)
|
||
|
*out = *p
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Endpoints. Required by controller-gen.
|
||
|
func (in *Endpoints) DeepCopy() *Endpoints {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Endpoints)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new Endpoints. Required by controller-gen.
|
||
|
func (in *Endpoints) DeepCopyInterface() interface{} {
|
||
|
return in.DeepCopy()
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto supports using Endpoint within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *Endpoint) DeepCopyInto(out *Endpoint) {
|
||
|
p := proto.Clone(in).(*Endpoint)
|
||
|
*out = *p
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Endpoint. Required by controller-gen.
|
||
|
func (in *Endpoint) DeepCopy() *Endpoint {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Endpoint)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new Endpoint. Required by controller-gen.
|
||
|
func (in *Endpoint) DeepCopyInterface() interface{} {
|
||
|
return in.DeepCopy()
|
||
|
}
|