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

Required Methods§

Implementors§