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

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§