github.com/cilium/cilium@v1.16.2/pkg/maps/tunnel/zz_generated.deepcopy.go (about) 1 //go:build !ignore_autogenerated 2 // +build !ignore_autogenerated 3 4 // SPDX-License-Identifier: Apache-2.0 5 // Copyright Authors of Cilium 6 7 // Code generated by deepcopy-gen. DO NOT EDIT. 8 9 package tunnel 10 11 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 12 func (in *TunnelIP) DeepCopyInto(out *TunnelIP) { 13 *out = *in 14 in.IP.DeepCopyInto(&out.IP) 15 return 16 } 17 18 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TunnelIP. 19 func (in *TunnelIP) DeepCopy() *TunnelIP { 20 if in == nil { 21 return nil 22 } 23 out := new(TunnelIP) 24 in.DeepCopyInto(out) 25 return out 26 }