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