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