mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
tailcfg: more Clone methods
Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
parent
7841c97af5
commit
9e2e8c80af
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
package tailcfg
|
package tailcfg
|
||||||
|
|
||||||
//go:generate go run tailscale.com/cmd/cloner -type=User,Node,Hostinfo,NetInfo -output=tailcfg_clone.go
|
//go:generate go run tailscale.com/cmd/cloner -type=User,Node,Hostinfo,NetInfo,Group,Role,Capability -output=tailcfg_clone.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// Code generated by tailscale.com/cmd/cloner -type User,Node,Hostinfo,NetInfo; DO NOT EDIT.
|
// Code generated by tailscale.com/cmd/cloner -type User,Node,Hostinfo,NetInfo,Group,Role,Capability; DO NOT EDIT.
|
||||||
|
|
||||||
package tailcfg
|
package tailcfg
|
||||||
|
|
||||||
@ -73,3 +73,38 @@ func (src *NetInfo) Clone() *NetInfo {
|
|||||||
}
|
}
|
||||||
return dst
|
return dst
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clone makes a deep copy of Group.
|
||||||
|
// The result aliases no memory with the original.
|
||||||
|
func (src *Group) Clone() *Group {
|
||||||
|
if src == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
dst := new(Group)
|
||||||
|
*dst = *src
|
||||||
|
dst.Members = append(src.Members[:0:0], src.Members...)
|
||||||
|
return dst
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clone makes a deep copy of Role.
|
||||||
|
// The result aliases no memory with the original.
|
||||||
|
func (src *Role) Clone() *Role {
|
||||||
|
if src == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
dst := new(Role)
|
||||||
|
*dst = *src
|
||||||
|
dst.Capabilities = append(src.Capabilities[:0:0], src.Capabilities...)
|
||||||
|
return dst
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clone makes a deep copy of Capability.
|
||||||
|
// The result aliases no memory with the original.
|
||||||
|
func (src *Capability) Clone() *Capability {
|
||||||
|
if src == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
dst := new(Capability)
|
||||||
|
*dst = *src
|
||||||
|
return dst
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user