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