For each scsi_device, you can get the scsi_host that corresponds to it, and from there the scsi_host_template, which is the vtable of the SCSI LLD. From there, you can look at the name field. drivers/scsi/storage/usb.c tells us the string should be "usb-storage".
So, I think given 'sdev' as scsi_device pointer, sdev->shost->hostt->name should resolve to "usb-storage" in case it is a LUN from a USB mass storage device. From a design perspective, it might be considered a sort of a 'hack' to a accomplish the task this way, but without proper APIs that's the simplest way to go.