What is the equivalent to FRHICommandList::CopyToResolveTarget in unreal 5.3?

I want to upgrade the following code to 5.3 but cannot figure out what replaced the module.


		FResolveParams ResolveParams;
		RHICmdList.CopyToResolveTarget(
			SrcTexture,
			ReadbackTexture,
			FResolveParams());

		RHICmdList.MapStagingSurface(ReadbackTexture, ColorDataBuffer, Width, Height);

		FColor* ColorBuffer = reinterpret_cast<FColor*>(ColorDataBuffer);
		Callback(ColorBuffer, Width, Height);
		RHICmdList.UnmapStagingSurface(ReadbackTexture);

It is CopyTexture