pub(crate) trait BluetoothDeviceMethods<D: DomTypes> {
    // Required methods
    fn Id(&self) -> DOMString;
    fn GetName(&self) -> Option<DOMString>;
    fn GetGatt(&self) -> Option<DomRoot<D::BluetoothRemoteGATTServer>>;
    fn WatchAdvertisements(
        &self,
        _comp: InRealm<'_>,
        _can_gc: CanGc,
    ) -> Rc<D::Promise>;
    fn UnwatchAdvertisements(&self);
    fn WatchingAdvertisements(&self) -> bool;
    fn GetOngattserverdisconnected(&self) -> Option<Rc<EventHandlerNonNull<D>>>;
    fn SetOngattserverdisconnected(
        &self,
        value: Option<Rc<EventHandlerNonNull<D>>>,
    );
}

Required Methods§

Implementors§