[UR][OpenCL] Delete unused copy constructors and assignments (#19985)
Coverity reported an issue regarding Rule-of-3 violation. In some
handlers only destructor was user-defined. These handlers are used as
unique_ptr which means that copy operation will never be executed.
That`s why I decided to remove copy constructors and copy assignments