github.com/kotalco/kotal@v0.3.0/apis/shared/zz_generated.deepcopy.go (about)

     1  //go:build !ignore_autogenerated
     2  // +build !ignore_autogenerated
     3  
     4  // Code generated by controller-gen. DO NOT EDIT.
     5  
     6  package shared
     7  
     8  import ()
     9  
    10  // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    11  func (in *Resources) DeepCopyInto(out *Resources) {
    12  	*out = *in
    13  	if in.StorageClass != nil {
    14  		in, out := &in.StorageClass, &out.StorageClass
    15  		*out = new(string)
    16  		**out = **in
    17  	}
    18  }
    19  
    20  // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resources.
    21  func (in *Resources) DeepCopy() *Resources {
    22  	if in == nil {
    23  		return nil
    24  	}
    25  	out := new(Resources)
    26  	in.DeepCopyInto(out)
    27  	return out
    28  }