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