// Decrement the reference count of a device. func (d *Device) Unref() { C.libusb_unref_device((*C.libusb_device)(d.me())) }
func (dev *Device) destroy() { C.libusb_unref_device(dev.device) dev.device = nil dev.ctx = nil }