Trait BluetoothRemoteGATTDescriptorMethods

Source
pub(crate) trait BluetoothRemoteGATTDescriptorMethods<D>
where D: DomTypes,
{ // 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>; }

Required Methods§

Source

fn Characteristic( &self, ) -> Root<Dom<<D as DomTypes>::BluetoothRemoteGATTCharacteristic>>

Source

fn Uuid(&self) -> DOMString

Source

fn GetValue(&self) -> Option<ByteString>

Source

fn ReadValue( &self, _comp: InRealm<'_>, _can_gc: CanGc, ) -> Rc<<D as DomTypes>::Promise>

Source

fn WriteValue( &self, value: ArrayBufferViewOrArrayBuffer, _comp: InRealm<'_>, _can_gc: CanGc, ) -> Rc<<D as DomTypes>::Promise>

Implementors§