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