-
Notifications
You must be signed in to change notification settings - Fork 0
/
zz_generated.deepcopy.go
63 lines (53 loc) · 1.63 KB
/
zz_generated.deepcopy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium
// Code generated by deepcopy-gen. DO NOT EDIT.
package lxcmap
import (
bpf "github.com/cilium/cilium/pkg/bpf"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EndpointInfo) DeepCopyInto(out *EndpointInfo) {
*out = *in
in.Pad.DeepCopyInto(&out.Pad)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointInfo.
func (in *EndpointInfo) DeepCopy() *EndpointInfo {
if in == nil {
return nil
}
out := new(EndpointInfo)
in.DeepCopyInto(out)
return out
}
// DeepCopyMapValue is an autogenerated deepcopy function, copying the receiver, creating a new bpf.MapValue.
func (in *EndpointInfo) DeepCopyMapValue() bpf.MapValue {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *EndpointKey) DeepCopyInto(out *EndpointKey) {
*out = *in
in.EndpointKey.DeepCopyInto(&out.EndpointKey)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointKey.
func (in *EndpointKey) DeepCopy() *EndpointKey {
if in == nil {
return nil
}
out := new(EndpointKey)
in.DeepCopyInto(out)
return out
}
// DeepCopyMapKey is an autogenerated deepcopy function, copying the receiver, creating a new bpf.MapKey.
func (in *EndpointKey) DeepCopyMapKey() bpf.MapKey {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}