pub(crate) trait BluetoothRemoteGATTDescriptorMethods<D: DomTypes> {
// Required methods
fn Characteristic(&self) -> DomRoot<D::BluetoothRemoteGATTCharacteristic>;
fn Uuid(&self) -> DOMString;
fn GetValue(&self) -> Option<ByteString>;
fn ReadValue(&self, _comp: InRealm<'_>, _can_gc: CanGc) -> Rc<D::Promise>;
fn WriteValue(
&self,
value: ArrayBufferViewOrArrayBuffer,
_comp: InRealm<'_>,
_can_gc: CanGc,
) -> Rc<D::Promise>;
}