DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
(out *ModelSpec)
| 133 | |
| 134 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 135 | func (in *ModelSpec) DeepCopyInto(out *ModelSpec) { |
| 136 | *out = *in |
| 137 | if in.HuggingFace != nil { |
| 138 | in, out := &in.HuggingFace, &out.HuggingFace |
| 139 | *out = new(HuggingFaceModelSpec) |
| 140 | **out = **in |
| 141 | } |
| 142 | if in.Deployment != nil { |
| 143 | in, out := &in.Deployment, &out.Deployment |
| 144 | *out = new(ModelDeploymentSpec) |
| 145 | (*in).DeepCopyInto(*out) |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModelSpec. |
| 150 | func (in *ModelSpec) DeepCopy() *ModelSpec { |