UICamera.current gives you the UI camera that sent out the event, which may not be very useful in your case. UICamera.currentTouch will give you info on the touch, mouse, or controller event that triggered the action. UICamera.currentTouch.hover tells you the object that's under the mouse for example. UICamera.currentTouch.press gives you the pressed object, etc.
UIButton.current, UIToggle.current, etc are only valid if the event you're inside was triggered by one of them -- ie: On Click of a UIButton, for example.