pub trait BluetoothUUIDMethods {
    // Required methods
    fn GetService(
        global: &Window,
        name: StringOrUnsignedLong,
    ) -> Result<DOMString, Error>;
    fn GetCharacteristic(
        global: &Window,
        name: StringOrUnsignedLong,
    ) -> Result<DOMString, Error>;
    fn GetDescriptor(
        global: &Window,
        name: StringOrUnsignedLong,
    ) -> Result<DOMString, Error>;
    fn CanonicalUUID(global: &Window, alias: u32) -> DOMString;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§