in api/v1/zz_generated.deepcopy.go [115:144]
func (in *CompositionStatus) DeepCopyInto(out *CompositionStatus) {
*out = *in
if in.Simplified != nil {
in, out := &in.Simplified, &out.Simplified
*out = new(SimplifiedStatus)
**out = **in
}
if in.InFlightSynthesis != nil {
in, out := &in.InFlightSynthesis, &out.InFlightSynthesis
*out = new(Synthesis)
(*in).DeepCopyInto(*out)
}
if in.CurrentSynthesis != nil {
in, out := &in.CurrentSynthesis, &out.CurrentSynthesis
*out = new(Synthesis)
(*in).DeepCopyInto(*out)
}
if in.PreviousSynthesis != nil {
in, out := &in.PreviousSynthesis, &out.PreviousSynthesis
*out = new(Synthesis)
(*in).DeepCopyInto(*out)
}
if in.InputRevisions != nil {
in, out := &in.InputRevisions, &out.InputRevisions
*out = make([]InputRevisions, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}